aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Mikhirev2015-02-18 01:53:08 +0300
committerDmitry Mikhirev2015-02-18 01:53:08 +0300
commit68ff1e50c953ba421e8f266c4d9e2b690260c2c8 (patch)
treecb46daf1b77e3dbf9745a6e0873e74af781d3c51
parente6f7aee8c27d87047857b9daf0075e90062b4ac2 (diff)
downloadmake_pcre-68ff1e50c953ba421e8f266c4d9e2b690260c2c8.tar.gz
make_pcre-68ff1e50c953ba421e8f266c4d9e2b690260c2c8.tar.bz2
make_pcre-68ff1e50c953ba421e8f266c4d9e2b690260c2c8.tar.xz
make_pcre-68ff1e50c953ba421e8f266c4d9e2b690260c2c8.zip
mistyping
-rw-r--r--pcre.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pcre.c b/pcre.c
index 40f6c14..ccb5528 100644
--- a/pcre.c
+++ b/pcre.c
@@ -204,7 +204,7 @@ static int parse_comp_opt(const char flag, const char *func)
switch (flag) {
case 'A': /* anchored regexp */
return PCRE_ANCHORED;
- case 'D': /* $ matches at the and of string only */
+ case 'D': /* $ matches at the end of string only */
return PCRE_DOLLAR_ENDONLY;
case 'i': /* ignore case */
return PCRE_CASELESS;