From e3053bd0878b5c8a3f1f92d43849148fb0a4b6f7 Mon Sep 17 00:00:00 2001 From: nxshock Date: Tue, 23 Mar 2021 23:36:27 +0500 Subject: [PATCH] Go fmt --- example_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/example_test.go b/example_test.go index b1c472b..0b34cf9 100644 --- a/example_test.go +++ b/example_test.go @@ -20,7 +20,7 @@ func ExampleCrop() { croppedImage := colorcrop.Crop( sourceImage, // for source image color.RGBA{255, 255, 255, 255}, // crop white border - 0.5) // with 50% thresold + 0.5) // with 50% thresold // Save cropped image croppedFile, _ := os.Create("cropped.png") @@ -41,8 +41,8 @@ func ExampleCropWithComparator() { croppedImage := colorcrop.CropWithComparator( sourceImage, // for source image color.RGBA{255, 255, 255, 255}, // crop white border - 0.5, // with 50% thresold - colorcrop.CmpCIE76) // using CIE76 standart for defining color difference + 0.5, // with 50% thresold + colorcrop.CmpCIE76) // using CIE76 standart for defining color difference // Save cropped image croppedFile, _ := os.Create("cropped.png")