this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update doc comment and align char order

phil d6c71c1c f47e2c9b

+2 -2
+2 -2
mst/mst_util.go
··· 197 197 } 198 198 199 199 // keyHasAllValidChars reports whether s matches 200 - // the regexp /^[a-zA-Z0-9_:.-]+$/ without using regexp, 200 + // the regexp /^[a-zA-Z0-9_:.~-]+$/ without using regexp, 201 201 // which is slower. 202 202 func keyHasAllValidChars(s string) bool { 203 203 if len(s) == 0 { ··· 211 211 continue 212 212 } 213 213 switch b { 214 - case '_', ':', '.', '-', '~': 214 + case '_', ':', '.', '~', '-': 215 215 continue 216 216 default: 217 217 return false