You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main.ts
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ export interface JSONScanner {
66
66
*/
67
67
getToken(): SyntaxKind;
68
68
/**
69
-
* Returns the last read token value. The value for strings is the decoded string content. For numbers its of type number, for boolean it's true or false.
69
+
* Returns the last read token value. The value for strings is the decoded string content. For numbers it's of type number, for boolean it's true or false.
* Parses the given text and returns the object the JSON content represents. On invalid input, the parser tries to be as fault tolerant as possible, but still return a result.
94
-
* Therefore always check the errors list to find out if the input was valid.
94
+
* Therefore, always check the errors list to find out if the input was valid.
* removals of text segments. All offsets refer to the original state of the document. No two edits must change or remove the same range of
326
326
* text in the original document. However, multiple edits can have
327
327
* the same offset, for example multiple inserts, or an insert followed by a remove or replace. The order in the array defines which edit is applied first.
328
-
* To apply edits to an input, you can use `applyEdits`
328
+
* To apply edits to an input, you can use `applyEdits`.
* removals of text segments. All offsets refer to the original state of the document. No two edits must change or remove the same range of
359
359
* text in the original document. However, multiple edits can have
360
360
* the same offset, for example multiple inserts, or an insert followed by a remove or replace. The order in the array defines which edit is applied first.
361
-
* To apply edits to an input, you can use `applyEdits`
361
+
* To apply edits to an input, you can use `applyEdits`.
0 commit comments