Clarify replace(...)'s behavior on nil

This commit is contained in:
Flaviu Tamas
2015-01-19 16:02:51 -05:00
parent 78afa73e01
commit 5ae3010e5a

View File

@@ -69,7 +69,8 @@ Perl and Javascript use.
[[proc-replace]]
==== replace(string, Regex, sub): string
Replaces each match of Regex in the string with `sub`.
Replaces each match of Regex in the string with `sub`, which should never be
or return `nil`.
If `sub` is a `proc (RegexMatch): string`, then it is executed with each match
and the return value is the replacement value.