From edf6ac2d6a5919db2ac72ed96106c9cec91bdc18 Mon Sep 17 00:00:00 2001 From: Akash Agarwal Date: Mon, 13 May 2019 15:30:52 +1000 Subject: [PATCH] Update README.md Fix typo 'lolerant' to 'tolerant' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fa2f2c1..2ce70ec 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ export interface ParseOptions { disallowComments?: boolean; } /** - * Parses the given text and returns the object the JSON content represents. On invalid input, the parser tries to be as fault lolerant as possible, but still return a result. + * 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. * Therefore always check the errors list to find out if the input was valid. */ export declare function parse(text: string, errors?: {error: ParseErrorCode;}[], options?: ParseOptions): any;