Skip to content

Commit 24a2ed7

Browse files
authored
Fix es2019.string.d.ts
trimLeft and trimRight's comments are swapped.
1 parent 8705844 commit 24a2ed7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/es2019.string.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ interface String {
55
/** Removes the leading white space and line terminator characters from a string. */
66
trimStart(): string;
77

8-
/** Removes the trailing white space and line terminator characters from a string. */
8+
/** Removes the leading white space and line terminator characters from a string. */
99
trimLeft(): string;
1010

11-
/** Removes the leading white space and line terminator characters from a string. */
11+
/** Removes the trailing white space and line terminator characters from a string. */
1212
trimRight(): string;
1313
}

0 commit comments

Comments
 (0)