Minor text fixes

This commit is contained in:
nicksavers 2014-10-09 17:51:59 +02:00
parent 1612ec6a1b
commit 243286b9cd
2 changed files with 2 additions and 2 deletions

View File

@ -283,7 +283,7 @@ public class TestRunner {
if (!Arrays.equals(expectedHReturn, actualHReturn)) {
String output =
String.format("HReturn is differnt expected hReturn: [ %s ], actual hReturn: [ %s ]",
String.format("HReturn is different expected hReturn: [ %s ], actual hReturn: [ %s ]",
Hex.toHexString(expectedHReturn),
Hex.toHexString(actualHReturn));
logger.info(output);

View File

@ -237,7 +237,7 @@ public class DataWord implements Comparable<DataWord> {
return;
}
BigInteger result = sValue().mod( word.sValue());
BigInteger result = sValue().mod(word.sValue());
ByteBuffer data = ByteBuffer.allocate(32);
if (result.signum() == -1)