From 24a2ed7d83470ecf7873599ae3a3a681ff1b1f84 Mon Sep 17 00:00:00 2001 From: Yoshiki Shibukawa Date: Sun, 9 Jun 2019 08:43:38 +0900 Subject: [PATCH] Fix es2019.string.d.ts trimLeft and trimRight's comments are swapped. --- src/lib/es2019.string.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/es2019.string.d.ts b/src/lib/es2019.string.d.ts index a0cde55c2e5..9d97779745f 100644 --- a/src/lib/es2019.string.d.ts +++ b/src/lib/es2019.string.d.ts @@ -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; }