aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormitchell <unknown>2020-07-27 12:59:19 -0400
committermitchell <unknown>2020-07-27 12:59:19 -0400
commitdaf3dd50a3b34842c01a7402e277626fb1d36b56 (patch)
treecd9a4bd52cedddcce4dd036855fba55bb16b008e
parent8a4334c5eeedc65c1b33c2a9d2d141df1c254944 (diff)
downloadscintilla-mirror-daf3dd50a3b34842c01a7402e277626fb1d36b56.tar.gz
lexlua: Updated documentation.
-rw-r--r--doc/LPegLexer.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/LPegLexer.html b/doc/LPegLexer.html
index a9ecbbf72..2926ae13b 100644
--- a/doc/LPegLexer.html
+++ b/doc/LPegLexer.html
@@ -536,7 +536,7 @@ operator 30
</tr>
<tr>
<td><code>lpeg.P(</code><em><code>n</code></em><code>)</code> </td>
- <td> Matches exactly <em><code>n</code></em> characters.</td>
+ <td> Matches exactly <em><code>n</code></em> number of characters.</td>
</tr>
<tr>
<td><code>lpeg.S(string)</code> </td>
@@ -564,7 +564,7 @@ operator 30
</tr>
<tr>
<td><code>patt1 - patt2</code> </td>
- <td> Matches <code>patt1</code> if <code>patt2</code> does not match.</td>
+ <td> Matches <code>patt1</code> if <code>patt2</code> does not also match.</td>
</tr>
<tr>
<td><code>-patt</code> </td>
@@ -1977,8 +1977,8 @@ operator 30
<h3><code>lexer.last_char_includes</code> (s)</h3>
- <p>Creates and returns a pattern that verifies that string set <em>s</em> contains the
- first non-whitespace character behind the current match position.</p>
+ <p>Creates and returns a pattern that verifies the first non-whitespace character
+ behind the current match position is in string set <em>s</em>.</p>
<p>Parameters:</p>