File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -341,14 +341,14 @@ interface String {
341341
342342 /**
343343 * 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 .
345345 * @param replaceValue A string containing the text to replace for every successful match of searchValue in this string.
346346 */
347347 replace ( searchValue : string , replaceValue : string ) : string ;
348348
349349 /**
350350 * 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 .
352352 * @param replacer A function that returns the replacement text.
353353 */
354354 replace ( searchValue : string , replacer : ( substring : string , ...args : any [ ] ) => string ) : string ;
You can’t perform that action at this time.
0 commit comments