Helpers: Removed Stray 's'
This commit is contained in:
parent
3c77375858
commit
701c98291b
|
@ -102,7 +102,7 @@ namespace dropout_dl {
|
||||||
|
|
||||||
if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || c == '.' || c == '/' || c == '-' || c == '_') {
|
if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || c == '.' || c == '/' || c == '-' || c == '_') {
|
||||||
out += c;
|
out += c;
|
||||||
}2
|
}
|
||||||
else if (c == ',' && str[i + 1] == ' ') {
|
else if (c == ',' && str[i + 1] == ' ') {
|
||||||
out+= '-';
|
out+= '-';
|
||||||
i++;
|
i++;
|
||||||
|
|
Loading…
Reference in New Issue