summaryrefslogtreecommitdiff
path: root/test/testp.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/testp.c')
-rw-r--r--test/testp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testp.c b/test/testp.c
index 3158925..de577a2 100644
--- a/test/testp.c
+++ b/test/testp.c
@@ -503,7 +503,7 @@ extern int main(int argc, char* argv[])
n("[0-9-a]", ":"); // PR#44
x3("(\\(((?:[^(]|\\g<1>)*)\\))", "(abc)(abc)", 1, 4, 2); // PR#43
x2("\\o{101}", "A", 0, 1);
- x2("(?:\\k'+1'B|(A)C)*", "ACAB", 0, 4); // relative backref by postitive number
+ x2("(?:\\k'+1'B|(A)C)*", "ACAB", 0, 4); // relative backref by positive number
x2("\\g<+2>(abc)(ABC){0}", "ABCabc", 0, 6); // relative call by positive number
x2("A\\g'0'|B()", "AAAAB", 0, 5);
x3("(A\\g'0')|B", "AAAAB", 0, 5, 1);