]> Cypherpunks repositories - gostls13.git/commit
strings: clarify Replacer's replacement order
authorAlberto Donizetti <alb.donizetti@gmail.com>
Wed, 25 Apr 2018 18:48:01 +0000 (20:48 +0200)
committerBrad Fitzpatrick <bradfitz@golang.org>
Thu, 26 Apr 2018 15:11:58 +0000 (15:11 +0000)
commit2191c3a4b9b8738b3033fd271b8b889cb3149292
treeefd866c54ed542b9f14815ad8f08913ce814692e
parentbf6530a25b07b6cbde4f1d7b25e549675340dec1
strings: clarify Replacer's replacement order

NewReplacer's documentation says that "replacements are performed in
order", meaning that substrings are replaced in the order they appear
in the target string, and not that the old->new replacements are
applied in the order they're passed to NewReplacer.

Rephrase the doc to make this clearer.

Fixes #25071

Change-Id: Icf3aa6a9d459b94764c9d577e4a76ad8c04d158d
Reviewed-on: https://go-review.googlesource.com/109375
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/strings/replace.go