Merge pull request #510 from Kbhredsox/patch-1

Update ITFWriter.java
This commit is contained in:
Sean Owen 2015-12-03 07:31:36 +00:00
commit b78688228d

View file

@ -50,7 +50,7 @@ public final class ITFWriter extends OneDimensionalCodeWriter {
public boolean[] encode(String contents) {
int length = contents.length();
if (length % 2 != 0) {
throw new IllegalArgumentException("The lenght of the input should be even");
throw new IllegalArgumentException("The length of the input should be even");
}
if (length > 80) {
throw new IllegalArgumentException(
@ -73,4 +73,4 @@ public final class ITFWriter extends OneDimensionalCodeWriter {
return result;
}
}
}