From 41a7730f43ad3a4496f5b67ea9a61086f8d9b623 Mon Sep 17 00:00:00 2001 From: Tom Thorogood Date: Fri, 6 Jan 2023 18:21:52 +1030 Subject: [PATCH] Remove space between NextLabel func and doc comment (#1410) This was mistakenly added in #1406. --- labels.go | 1 - 1 file changed, 1 deletion(-) diff --git a/labels.go b/labels.go index 979fccbc..cd498d2e 100644 --- a/labels.go +++ b/labels.go @@ -125,7 +125,6 @@ func Split(s string) []int { // string s starting at offset. A negative offset will cause a panic. // The bool end is true when the end of the string has been reached. // Also see PrevLabel. - func NextLabel(s string, offset int) (i int, end bool) { if s == "" { return 0, true