We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccb4a9b commit 78151beCopy full SHA for 78151be
1 file changed
src/test/java/org/json/junit/JSONTokenerTest.java
@@ -259,7 +259,7 @@ public void testNextBackComboWithNewLines() {
259
assertEquals(" at index 15 [character number 0 in line 3]", tokener.toString());
260
assertEquals('\n', tokener.next());
261
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
+ // verify stepping back after reading the \n of an \r\n combo doesn't increment the line incorrectly
263
tokener.back();
264
assertEquals(" at index 15 [character number 6 in line 2]", tokener.toString());
265
0 commit comments