From 58af7defe4dd77466f25e5568cf25a030df151f4 Mon Sep 17 00:00:00 2001 From: jieniu$ Date: Thu, 1 Oct 2020 10:46:58 -0600 Subject: [PATCH] Fix typo in JSON.stringify doc (#40735) --- src/lib/es5.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/es5.d.ts b/src/lib/es5.d.ts index cf95c473240..0c04a27b1c3 100644 --- a/src/lib/es5.d.ts +++ b/src/lib/es5.d.ts @@ -1047,7 +1047,7 @@ interface JSON { /** * Converts a JavaScript value to a JavaScript Object Notation (JSON) string. * @param value A JavaScript value, usually an object or array, to be converted. - * @param replacer An array of strings and numbers that acts as a approved list for selecting the object properties that will be stringified. + * @param replacer An array of strings and numbers that acts as an approved list for selecting the object properties that will be stringified. * @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read. */ stringify(value: any, replacer?: (number | string)[] | null, space?: string | number): string;