From 4deda6b73253ee98bf112ad43d0c37562899db2c Mon Sep 17 00:00:00 2001 From: Timothee Cour Date: Thu, 28 Jun 2018 23:13:49 -0700 Subject: Update nre.nim (#8147) --- lib/impure/nre.nim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/impure') diff --git a/lib/impure/nre.nim b/lib/impure/nre.nim index 6058128dd..889210f62 100644 --- a/lib/impure/nre.nim +++ b/lib/impure/nre.nim @@ -654,17 +654,17 @@ template replaceImpl(str: string, pattern: Regex, proc replace*(str: string, pattern: Regex, subproc: proc (match: RegexMatch): string): string = - ## Replaces each match of Regex in the string with ``sub``, which should + ## Replaces each match of Regex in the string with ``subproc``, which should ## never be or return ``nil``. ## - ## If ``sub`` is a ``proc (RegexMatch): string``, then it is executed with + ## If ``subproc`` is a ``proc (RegexMatch): string``, then it is executed with ## each match and the return value is the replacement value. ## - ## If ``sub`` is a ``proc (string): string``, then it is executed with the + ## If ``subproc`` is a ``proc (string): string``, then it is executed with the ## full text of the match and and the return value is the replacement ## value. ## - ## If ``sub`` is a string, the syntax is as follows: + ## If ``subproc`` is a string, the syntax is as follows: ## ## - ``$$`` - literal ``$`` ## - ``$123`` - capture number ``123`` -- cgit 1.4.1-2-gfad0