Skip to content

Commit 29e50b3

Browse files
committedSep 16, 2022
Rewording documentation
1 parent 472584f commit 29e50b3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/lib/es2015.symbol.wellknown.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ interface String {
219219
match(matcher: { [Symbol.match](string: string): RegExpMatchArray | null; }): RegExpMatchArray | null;
220220

221221
/**
222-
* Passes a string and {@linkcode replaceValue} to the [Symbol.replace] method on {@linkcode searchValue}. This method is expected to implement its own replacement algorithm.
222+
* Passes a string and {@linkcode replaceValue} to the `[Symbol.replace]` method on {@linkcode searchValue}. This method is expected to implement its own replacement algorithm.
223223
* @param searchValue An object that supports searching for and replacing matches within a string.
224224
* @param replaceValue The replacement text.
225225
*/

‎src/lib/es5.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ interface String {
430430
/**
431431
* Replaces text in a string, using a regular expression or search string.
432432
* @param searchValue A string or regular expression to search for.
433-
* @param replaceValue A string containing the text to replace. When the {@linkcode searchValue} is a string, only the first match is replaced. If the {@linkcode searchValue} is a RegExp, all matches are replaced if the g flag is set. Otherwise only the first one is.
433+
* @param replaceValue A string containing the text to replace. When the {@linkcode searchValue} is a RegExp, all matches are replaced if the g flag is set (taking into account the y flag if present). Otherwise {@linkcode searchValue} only the first match is replaced.
434434
*/
435435
replace(searchValue: string | RegExp, replaceValue: string): string;
436436

0 commit comments

Comments
 (0)