From 32a1fdcbe86c31f1b39537e4e408b09df0f83c0e Mon Sep 17 00:00:00 2001 From: dirtsea Date: Sun, 8 Sep 2019 02:03:41 +1000 Subject: [PATCH] Fix typo in README.md (#32) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 394bc00..6055202 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ func main() { hash1, _ = goimagehash.DifferenceHash(img1) hash2, _ = goimagehash.DifferenceHash(img2) distance, _ = hash1.Distance(hash2) - fmt.Printf("Distance between images: %v\n", distance)ls + fmt.Printf("Distance between images: %v\n", distance) width, height := 8, 8 hash3, _ = goimagehash.ExtAverageHash(img1, width, height) hash4, _ = goimagehash.ExtAverageHash(img2, width, height)