aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Mikhirev2015-05-09 14:26:11 +0300
committerDmitry Mikhirev2015-05-09 14:26:11 +0300
commit97ee01563b793e844609d75acb2ad9405f7f3fa3 (patch)
tree26e938c7a08b8a0791c7e3fe20c71b0d04c4c1f0
parentc71c571dbc2ecc90fa17aa71acca918f7cb41788 (diff)
downloadmake_pcre-97ee01563b793e844609d75acb2ad9405f7f3fa3.tar.gz
make_pcre-97ee01563b793e844609d75acb2ad9405f7f3fa3.tar.bz2
make_pcre-97ee01563b793e844609d75acb2ad9405f7f3fa3.tar.xz
make_pcre-97ee01563b793e844609d75acb2ad9405f7f3fa3.zip
fixed some mistypings in README.md
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 09c7c31..cc9a089 100644
--- a/README.md
+++ b/README.md
@@ -121,7 +121,7 @@ The following options are implemented:
The same as in Perl;
- `S` enables additional studying of compiled regexp. The same as in PHP;
- `u` changes the way of processing `\B`, `\b`, `\D`, `\d`, `\S`, `\s`, `\W`,
- `\w` and some of the POSIX character classes forsing them to use Unicode
+ `\w` and some of the POSIX character classes forcing them to use Unicode
properties;
- `U` ungreedies quantifiers by default (they still can be made greedy
if followed by `?`);
@@ -129,7 +129,7 @@ The following options are implemented:
The same as in Perl;
- `X` enables extra PCRE functionality making the pattern incompatible to Perl.
See PCRE documentation for additional information;
-- `8` makes both pattern and subject string treated as UTF8.
+- `8` makes both pattern and subject string treated as UTF-8.
See also
--------