tangled
alpha
login
or
join now
tholps.site
/
skidmark
0
fork
atom
Tholp's bespoke website generator
0
fork
atom
overview
issues
pulls
pipelines
fix unicode in parameters crashing
Tholp1
10 months ago
da6c7a4a
b7afa10e
+1
-1
1 changed file
expand all
collapse all
unified
split
src
stringtools.rs
+1
-1
src/stringtools.rs
···
41
41
}
42
42
43
43
let mut i = 0;
44
44
-
while i < tok.len() {
44
44
+
while i < tok.chars().count() {
45
45
let c = tok.chars().nth(i).unwrap();
46
46
i += 1;
47
47