diff options
author | Karl Williamson <khw@khw-desktop.(none)> | 2010-06-22 09:45:23 -0600 |
---|---|---|
committer | Jesse Vincent <jesse@bestpractical.com> | 2010-06-28 22:30:04 -0400 |
commit | c27a5cfe2661343fcb3b4f58478604d8b59b20de (patch) | |
tree | 6570affd331aa336f0150b98b0e527a511ea5c28 /ext/re | |
parent | 3ff1c45a45226c5e55f9f22807a1b068b751e49e (diff) | |
download | perl-c27a5cfe2661343fcb3b4f58478604d8b59b20de.tar.gz |
Standardize on use of 'capture group' over 'buffer'
Both terms 'capture group' and 'capture buffer' are used in the
documentation. This patch changes most uses of the latter to the
former, as they are referenced using "\g".
Diffstat (limited to 'ext/re')
-rw-r--r-- | ext/re/re.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/re/re.pm b/ext/re/re.pm index fb0b8d264c..d9fd912a4a 100644 --- a/ext/re/re.pm +++ b/ext/re/re.pm @@ -307,7 +307,7 @@ Turns on all "extra" debugging options. =item BUFFERS -Enable debugging the capture buffer storage during match. Warning, +Enable debugging the capture group storage during match. Warning, this can potentially produce extremely large output. =item TRIEM |