Skip to content

Commit aabbe02

Browse files
committed
'this string' -> 'the current string'
1 parent 318cc26 commit aabbe02

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/lib/es2017.string.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
interface String {
22
/**
3-
* Pads this string with a given string (repeated and/or truncated, if needed) so that the resulting string has a given length.
4-
* The padding is applied from the start of this string.
3+
* Pads the current string with a given string (repeated and/or truncated, if needed) so that the resulting string has a given length.
4+
* The padding is applied from the start of the current string.
55
*
66
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padStart)
77
*
@@ -15,8 +15,8 @@ interface String {
1515
padStart(targetLength: number, padString?: string): string;
1616

1717
/**
18-
* Pads this string with a given string (repeated and/or truncated, if needed) so that the resulting string has a given length.
19-
* The padding is applied from the end of this string.
18+
* Pads the current string with a given string (repeated and/or truncated, if needed) so that the resulting string has a given length.
19+
* The padding is applied from the end of the current string.
2020
*
2121
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padEnd)
2222
*

0 commit comments

Comments
 (0)