diff options
author | David Steinbrunner <dsteinbrunner@pobox.com> | 2013-05-21 07:38:42 -0400 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2013-05-25 15:48:36 +0200 |
commit | 31dc26d6ecb66c54dc0372efd91fa2778f8fca10 (patch) | |
tree | 1b77e34b5e1e9f2908c3730940f89277f1b86fb7 /pod | |
parent | 3bf17896a9a3ecc4d77387106fcf4ec41302af7c (diff) | |
download | perl-31dc26d6ecb66c54dc0372efd91fa2778f8fca10.tar.gz |
typo fix for re pod change use of optimise to be consistent with other uses of optimize
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlre.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod index 3be846ed0e..9084645a11 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -387,7 +387,7 @@ gives added protection. This modifier may be specified to be the default by C<use re '/a'> or C<use re '/aa'>. If you do so, you may actually have occasion to use -the C</u> modifier explictly if there are a few regular expressions +the C</u> modifier explicitly if there are a few regular expressions where you do want full Unicode rules (but even here, it's best if everything were under feature C<"unicode_strings">, along with the C<use re '/aa'>). Also see L</Which character set modifier is in @@ -1591,7 +1591,7 @@ It is recommended that for this usage you put the DEFINE block at the end of the pattern, and that you name any subpatterns defined within it. Also, it's worth noting that patterns defined this way probably will -not be as efficient, as the optimiser is not very clever about +not be as efficient, as the optimizer is not very clever about handling them. An example of how this might be used is as follows: |