From 7bcb6b05266edc4d4d9326c1c2f8d3f69c07bd65 Mon Sep 17 00:00:00 2001 From: CodeLingo Bot Date: Mon, 18 Feb 2019 22:07:04 +0000 Subject: [PATCH] Fix function comments based on best practices from Effective Go Signed-off-by: CodeLingo Bot --- utils/base1dcode.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/base1dcode.go b/utils/base1dcode.go index 75e5004..a335c0c 100644 --- a/utils/base1dcode.go +++ b/utils/base1dcode.go @@ -46,7 +46,7 @@ func (c *base1DCodeIntCS) CheckSum() int { return c.checksum } -// New1DCode creates a new 1D barcode where the bars are represented by the bits in the bars BitList +// New1DCodeIntCheckSum creates a new 1D barcode where the bars are represented by the bits in the bars BitList func New1DCodeIntCheckSum(codeKind, content string, bars *BitList, checksum int) barcode.BarcodeIntCS { return &base1DCodeIntCS{base1DCode{bars, codeKind, content}, checksum} }