Fix very minor typos in documentation: redundant spaces.
This commit is contained in:
parent
35fee4193b
commit
072717a61f
|
@ -2180,10 +2180,10 @@ be easier to remember:
|
||||||
<pre>
|
<pre>
|
||||||
(*atomic:\d+)foo
|
(*atomic:\d+)foo
|
||||||
</pre>
|
</pre>
|
||||||
This kind of parenthesized group "locks up" the part of the pattern it
|
This kind of parenthesized group "locks up" the part of the pattern it contains
|
||||||
contains once it has matched, and a failure further into the pattern is
|
once it has matched, and a failure further into the pattern is prevented from
|
||||||
prevented from backtracking into it. Backtracking past it to previous items,
|
backtracking into it. Backtracking past it to previous items, however, works as
|
||||||
however, works as normal.
|
normal.
|
||||||
</P>
|
</P>
|
||||||
<P>
|
<P>
|
||||||
An alternative description is that a group of this type matches exactly the
|
An alternative description is that a group of this type matches exactly the
|
||||||
|
|
|
@ -2186,10 +2186,10 @@ be easier to remember:
|
||||||
.sp
|
.sp
|
||||||
(*atomic:\ed+)foo
|
(*atomic:\ed+)foo
|
||||||
.sp
|
.sp
|
||||||
This kind of parenthesized group "locks up" the part of the pattern it
|
This kind of parenthesized group "locks up" the part of the pattern it contains
|
||||||
contains once it has matched, and a failure further into the pattern is
|
once it has matched, and a failure further into the pattern is prevented from
|
||||||
prevented from backtracking into it. Backtracking past it to previous items,
|
backtracking into it. Backtracking past it to previous items, however, works as
|
||||||
however, works as normal.
|
normal.
|
||||||
.P
|
.P
|
||||||
An alternative description is that a group of this type matches exactly the
|
An alternative description is that a group of this type matches exactly the
|
||||||
string of characters that an identical standalone pattern would match, if
|
string of characters that an identical standalone pattern would match, if
|
||||||
|
|
Loading…
Reference in New Issue