Remove space between NextLabel func and doc comment (#1410)

This was mistakenly added in #1406.
This commit is contained in:
Tom Thorogood 2023-01-06 18:21:52 +10:30 committed by GitHub
parent 4bd038eb76
commit 41a7730f43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -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