Helpers: Removed Stray 's'

This commit is contained in:
Moss 2022-10-01 14:28:57 -04:00
parent 3c77375858
commit 701c98291b
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ namespace dropout_dl {
if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || c == '.' || c == '/' || c == '-' || c == '_') {
out += c;
}2
}
else if (c == ',' && str[i + 1] == ' ') {
out+= '-';
i++;