From a7fa8b99c6874d2d8fb187d0cc8e03fde8960b07 Mon Sep 17 00:00:00 2001 From: Tom Lord Date: Mon, 2 Mar 2015 11:22:10 +0000 Subject: [PATCH] Fixed typos --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 026c421..b51411b 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ Or install it yourself as: There are also some various (increasingly obscure) unsupported bits of syntax, which I cannot be bothered to write out fully here. Full documentation on all the intricate obscurities in the ruby (version 2.x) regexp parser can be found [here](https://raw.githubusercontent.com/k-takata/Onigmo/master/doc/RE). To name a couple: * Conditional capture groups, e.g. `/(group1)? (?(1)yes|no)/.examples` (which *should* return: `["group1 yes", " no"]`) -* Back reference by relalitve group number, e.g. `/(a)(b)(c)(d) \k<-2>` (which *should* return: `["abcd c"]`) +* Back reference by relatve group number, e.g. `/(a)(b)(c)(d) \k<-2>/.examples` (which *should* return: `["abcd c"]`) ## Impossible features ("illegal syntax")