summaryrefslogtreecommitdiff
path: root/go/ocr-numbers/ocr_numbers.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/ocr-numbers/ocr_numbers.go')
-rw-r--r--go/ocr-numbers/ocr_numbers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/go/ocr-numbers/ocr_numbers.go b/go/ocr-numbers/ocr_numbers.go
index b9cf0c0..4c0227c 100644
--- a/go/ocr-numbers/ocr_numbers.go
+++ b/go/ocr-numbers/ocr_numbers.go
@@ -56,7 +56,7 @@ func splitLineByGroup(line string) []string {
}
func Recognize(s string) []string {
- // sanitize input, split by groups
+ // bogus part: sanitize input, split by groups
re, _ := regexp.Compile("\n *\n")
s = re.ReplaceAllString(s, "\n\n")
groups := strings.Split(s, "\n\n")