From edbb3e3b32c2d42f04655f2ef9d03b365c8a0cfe Mon Sep 17 00:00:00 2001 From: gingerBill Date: Fri, 4 Dec 2020 18:53:17 +0000 Subject: Fix typos --- core/strings/strings.odin | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'core/strings') diff --git a/core/strings/strings.odin b/core/strings/strings.odin index 7bb6c33fc..09c39050f 100644 --- a/core/strings/strings.odin +++ b/core/strings/strings.odin @@ -2,6 +2,7 @@ package strings import "core:io" import "core:mem" +import "core:unicode" import "core:unicode/utf8" clone :: proc(s: string, allocator := context.allocator, loc := #caller_location) -> string { @@ -1014,9 +1015,9 @@ fields :: proc(s: string, allocator := context.allocator) -> []string #no_bounds fields_proc :: proc(s: string, f: proc(rune) -> bool, allocator := context.allocator) -> []string #no_bounds_check { substrings := make([dynamic]string, 0, 32, allocator); - start := -1; - - for end, r in s { + start, end := -1, -1; + for r, offset in s { + end = offset; if f(r) { if start >= 0 { append(&substrings, s[start : end]); -- cgit v1.2.3