]> gitweb.factorcode.org Git - factor.git/commitdiff
regexp: fix typo in docs
authorKeita Haga <keitahaga@mail.com>
Sat, 5 Mar 2011 14:00:52 +0000 (23:00 +0900)
committerKeita Haga <keitahaga@mail.com>
Sat, 5 Mar 2011 14:00:52 +0000 (23:00 +0900)
basis/regexp/regexp-docs.factor

index 4fcea94cf2c57763a02fa5e828c7bd4a001b9357..2b8e3e420a5b236ff7e288d929e0b937aebf4be3 100644 (file)
@@ -113,7 +113,7 @@ ARTICLE: { "regexp" "syntax" } "Regular expression syntax"
 "To make it convenient to have a long string which uses regexp operators, a special syntax is provided. If a substring begins with " { $snippet "\\Q" } " then everything until " { $snippet "\\E" } " is quoted (escaped). For example, " { $snippet "R/ \\Qfoo\\bar|baz()\\E/" } " matches exactly the string " { $snippet "\"foo\\bar|baz()\"" } "."
 { $heading "Unsupported features" }
 { $subheading "Group capture" }
-{ $subheading "Reluctant and posessive quantifiers" }
+{ $subheading "Reluctant and possessive quantifiers" }
 { $subheading "Backreferences" }
 "Backreferences were omitted because of a design decision to allow only regular expressions following the formal theory of regular languages. For more information, see " { $link { "regexp" "theory" } } "."
 $nl