Skip to content

Commit fe3f9eb

Browse files
committed
fixed the go lint issue
1 parent 596b61e commit fe3f9eb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ascii/ascii.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import (
1010
"reflect"
1111
)
1212

13+
// PixelASCII is converted pixel ascii
1314
type PixelASCII struct {
1415
Char byte
1516
R uint8

convert/convert.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ func (converter *ImageConverter) Image2PixelASCIIMatrix(image image.Image, image
8484
return pixelASCIIs
8585
}
8686

87-
// Image2PixelASCIIMatrix convert a image to a pixel ascii matrix
87+
// ImageFile2PixelASCIIMatrix convert a image to a pixel ascii matrix
8888
func (converter *ImageConverter) ImageFile2PixelASCIIMatrix(imageFilename string, imageConvertOptions *Options) [][]ascii.PixelASCII {
8989
img, err := OpenImageFile(imageFilename)
9090
if err != nil {

0 commit comments

Comments
 (0)