File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -341,14 +341,14 @@ interface String {
341
341
342
342
/**
343
343
* Replaces text in a string, using a regular expression or search string.
344
- * @param searchValue A string that represents the regular expression .
344
+ * @param searchValue A string to search for .
345
345
* @param replaceValue A string containing the text to replace for every successful match of searchValue in this string.
346
346
*/
347
347
replace ( searchValue : string , replaceValue : string ) : string ;
348
348
349
349
/**
350
350
* Replaces text in a string, using a regular expression or search string.
351
- * @param searchValue A string that represents the regular expression .
351
+ * @param searchValue A string to search for .
352
352
* @param replacer A function that returns the replacement text.
353
353
*/
354
354
replace ( searchValue : string , replacer : ( substring : string , ...args : any [ ] ) => string ) : string ;
You can’t perform that action at this time.
0 commit comments