fix check

This commit is contained in:
antelle 2016-08-08 20:55:38 +03:00
parent d26dd37096
commit 87ff9a9cc2
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@
[stopChars formUnionWithCharacterSet:[NSCharacterSet decimalDigitCharacterSet]];
[stopChars formUnionWithCharacterSet:[NSCharacterSet whitespaceCharacterSet]];
NSInteger index = 0;
while (args.length) {
while (index < args.length) {
unichar firstChar = [args characterAtIndex:index];
if ([stopChars characterIsMember:firstChar]) {
break;