fix typo in intellisense (#21914)

This commit is contained in:
Priyantha Lankapura
2018-02-14 08:22:33 +05:30
committed by Mohamed Hegazy
parent 9e6d862bf4
commit 80464e8ff1

4
src/lib/es5.d.ts vendored
View File

@@ -985,7 +985,7 @@ interface ReadonlyArray<T> {
*/
toString(): string;
/**
* Returns a string representation of an array. The elements are converted to string using thier toLocalString methods.
* Returns a string representation of an array. The elements are converted to string using their toLocalString methods.
*/
toLocaleString(): string;
/**
@@ -1104,7 +1104,7 @@ interface Array<T> {
*/
toString(): string;
/**
* Returns a string representation of an array. The elements are converted to string using thier toLocalString methods.
* Returns a string representation of an array. The elements are converted to string using their toLocalString methods.
*/
toLocaleString(): string;
/**