Skip to content

Commit 78151be

Browse files
authored
fix wrong comment update
1 parent ccb4a9b commit 78151be

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/org/json/junit/JSONTokenerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ public void testNextBackComboWithNewLines() {
259259
assertEquals(" at index 15 [character number 0 in line 3]", tokener.toString());
260260
assertEquals('\n', tokener.next());
261261
assertEquals(" at index 16 [character number 0 in line 3]", tokener.toString());
262-
// verify stepping back after reading the \n of an \r\n combo doesn't increment the in line incorrectly
262+
// verify stepping back after reading the \n of an \r\n combo doesn't increment the line incorrectly
263263
tokener.back();
264264
assertEquals(" at index 15 [character number 6 in line 2]", tokener.toString());
265265
assertEquals('\n', tokener.next());

0 commit comments

Comments
 (0)