Documentation fix for backreferences example. Fixes issue #33.

This commit is contained in:
jzmaddock
2017-07-30 18:51:10 +01:00
parent a59890f520
commit ab399c9159
7 changed files with 7 additions and 7 deletions

View File

@ -268,7 +268,7 @@
is in the range 1-9, matches the same string that was matched by sub-expression
<span class="emphasis"><em>n</em></span>. For example the expression:
</p>
<pre class="programlisting">^(a*).*\1$</pre>
<pre class="programlisting">^(a*)[^a]*\1$</pre>
<p>
Will match the string:
</p>