diff options
author | premchai21@yahoo.com <premchai21@yahoo.com> | 2006-09-06 16:11:10 -0700 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-09-07 13:13:05 +0000 |
commit | 5a4e8ea75d635fdfae035d8d1954c3aca4bef057 (patch) | |
tree | 6f7623620c0baddbfbaf2ed3df36dbfc286a77f5 /pod | |
parent | ad95c6e182499b977b9e82cd165b06b867730861 (diff) | |
download | perl-5a4e8ea75d635fdfae035d8d1954c3aca4bef057.tar.gz |
[perl #40293] perlsec talks erroneously about "Non-Finite Automaton"
From: premchai21@yahoo.com (via RT) <perlbug-followup@perl.org>
Message-ID: <rt-3.5.HEAD-31258-1157609470-1994.40293-75-0@perl.org>
p4raw-id: //depot/perl@28800
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlsec.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlsec.pod b/pod/perlsec.pod index 32a408afa9..0068d7cad5 100644 --- a/pod/perlsec.pod +++ b/pod/perlsec.pod @@ -480,9 +480,9 @@ Algorithm::FastPermute), or for any cryptographic applications. =item * -Regular expressions - Perl's regular expression engine is so called -NFA (Non-Finite Automaton), which among other things means that it can -rather easily consume large amounts of both time and space if the +Regular expressions - Perl's regular expression engine is so called NFA +(Non-deterministic Finite Automaton), which among other things means that +it can rather easily consume large amounts of both time and space if the regular expression may match in several ways. Careful crafting of the regular expressions can help but quite often there really isn't much one can do (the book "Mastering Regular Expressions" is required |