correct errors

This commit is contained in:
Jon Lipstate
2023-04-05 22:22:16 -07:00
parent 41ff7a6010
commit 0f1c5b3891
2 changed files with 1 additions and 3 deletions
-2
View File
@@ -1081,7 +1081,6 @@ split_by_byte_iterator :: proc(s: ^string, sep: u8) -> (res: string, ok: bool) {
}
/*
Splits the input string by the separator string in an iterator fashion.
Destructively consumes the original string until the end.
Inputs:
- s: Pointer to the input string, which is modified during the search.
@@ -1116,7 +1115,6 @@ split_iterator :: proc(s: ^string, sep: string) -> (string, bool) {
}
/*
Splits the input string after every separator string in an iterator fashion.
Destructively consumes the original string until the end.
Inputs:
- s: Pointer to the input string, which is modified during the search.