1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

net: fix typos (#18164)

This commit is contained in:
Turiiya
2023-05-12 08:31:27 +02:00
committed by GitHub
parent 790afbce94
commit 67e3061ea1
12 changed files with 27 additions and 27 deletions

View File

@ -415,7 +415,7 @@ fn get_scheme(rawurl string) !string {
return split[0]
}
// split slices s into two substrings separated by the first occurence of
// split slices s into two substrings separated by the first occurrence of
// sep. If cutc is true then sep is included with the second substring.
// If sep does not occur in s then s and the empty string is returned.
fn split(s string, sep u8, cutc bool) (string, string) {