Fix typos in docs.

Fixes #3890.

[SVN r59425]
This commit is contained in:
John Maddock
2010-02-02 12:44:32 +00:00
parent 50892585d3
commit f9db065c61
32 changed files with 198 additions and 198 deletions

View File

@ -145,9 +145,9 @@ consume as little input as possible while still producing a match.
[h4 Pocessive repeats]
By default when a repeated patten does not match then the engine will backtrack until
By default when a repeated pattern does not match then the engine will backtrack until
a match is found. However, this behaviour can sometime be undesireable so there are
also "pocessive" repeats: these match as much as possible and do not then allow
also "possessive" repeats: these match as much as possible and do not then allow
backtracking if the rest of the expression fails to match.
=*+= Matches the previous atom zero or more times, while giving nothing back.