Skip to content

Commit d023427

Browse files
Merge pull request #31831 from shibukawa/patch-1
Fix es2019.string.d.ts
2 parents a7a0c33 + 24a2ed7 commit d023427

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)