Skip to content

Commit

Permalink
Fixing pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
navya9singh committed Sep 26, 2022
1 parent abc58bd commit 8e71f42
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/lib/es5.d.ts
Expand Up @@ -424,7 +424,7 @@ interface String {
/**
* Replaces text in a string, using a regular expression or search string.
* @param searchValue A string or regular expression to search for.
* @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 (or only those matches at the beginning, if the `y` flag if present). Otherwise, only the first match of {@linkcode searchValue} is replaced.
* @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 (or only those matches at the beginning, if the `y` flag is also present). Otherwise, only the first match of {@linkcode searchValue} is replaced.
*/
replace(searchValue: string | RegExp, replaceValue: string): string;

Expand Down
6 changes: 3 additions & 3 deletions tests/baselines/reference/completionsStringMethods.baseline
Expand Up @@ -1078,7 +1078,7 @@
"target": {
"fileName": "lib.d.ts",
"textSpan": {
"start": 18875,
"start": 18880,
"length": 28
}
}
Expand All @@ -1088,7 +1088,7 @@
"kind": "link"
},
{
"text": " is a `RegExp`, all matches are replaced if the `g` flag is set (or only those matches at the beginning, if the `y` flag if present). Otherwise, only the first match of ",
"text": " is a `RegExp`, all matches are replaced if the `g` flag is set (or only those matches at the beginning, if the `y` flag is also present). Otherwise, only the first match of ",
"kind": "text"
},
{
Expand All @@ -1101,7 +1101,7 @@
"target": {
"fileName": "lib.d.ts",
"textSpan": {
"start": 18875,
"start": 18880,
"length": 28
}
}
Expand Down

0 comments on commit 8e71f42

Please sign in to comment.