summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pod/perlsec.pod6
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