Fix es2019.string.d.ts

trimLeft and trimRight's comments are swapped.
This commit is contained in:
Yoshiki Shibukawa
2019-06-09 08:43:38 +09:00
committed by GitHub
parent 8705844879
commit 24a2ed7d83
+2 -2
View File
@@ -5,9 +5,9 @@ interface String {
/** Removes the leading white space and line terminator characters from a string. */
trimStart(): string;
/** Removes the trailing white space and line terminator characters from a string. */
/** Removes the leading white space and line terminator characters from a string. */
trimLeft(): string;
/** Removes the leading white space and line terminator characters from a string. */
/** Removes the trailing white space and line terminator characters from a string. */
trimRight(): string;
}