Alexander Kuznetsov
2015-03-21 00:46:13 +03:00
parent d300938502
commit 9b793115f7
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ public class EnglishLetterDecoderEncoder implements LetterDecoderEncoder {
c = DASH_CODE;
}
if (c < 0 || c > 27)
throw new WrongCharaterException("Symblo " + string.charAt(i) + " is not small cirillic letter");
throw new WrongCharaterException("Symbol " + string.charAt(i) + " is not small cirillic letter");
result = result * 28 + c;
}
for (int i = string.length(); i < 6; i++) {