Skip to content

Commit fbc8466

Browse files
committed
minor changes in comments - for my Java class.
1 parent ac04844 commit fbc8466

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/net/sharksystem/asap/utils/ASAPSerialization.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,10 +216,10 @@ public static byte readByte(InputStream is) throws IOException, ASAPException {
216216
public static short readShortParameter(InputStream is) throws IOException, ASAPException {
217217
int value = readByteParameter(is);
218218
value = value << 8;
219-
// by sure
219+
// be sure
220220
value = value & BLANK_RIGHT_SHORT;
221221
int right = readByteParameter(is);
222-
// by sure
222+
// be sure
223223
right = right & BLANK_LEFT_SHORT;
224224
value += right;
225225

0 commit comments

Comments
 (0)