aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRobert Di Pardo <dipardo.r@gmail.com>2022-04-02 18:50:23 -0400
committerRobert Di Pardo <dipardo.r@gmail.com>2022-04-02 18:50:23 -0400
commita1961d248ac5521cea7bd22e4d7e2e203bf2d361 (patch)
tree17be85b58ac14144f3d7980b917656f1d5e659ff
parentb443d58497d6d2cfce83c3882ff0cf0ce45914d1 (diff)
downloadscintilla-mirror-a1961d248ac5521cea7bd22e4d7e2e203bf2d361.tar.gz
Fix minor typo in migration guide
Change ' s' to 'is' and put a comma before conjunctive 'then'
-rw-r--r--doc/Scintilla5Migration.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/Scintilla5Migration.html b/doc/Scintilla5Migration.html
index 6b09f288f..ef5acc8d7 100644
--- a/doc/Scintilla5Migration.html
+++ b/doc/Scintilla5Migration.html
@@ -86,8 +86,8 @@
<p>With Scintilla 4.x, it was most common for applications to set a lexer either by lexer name or lexer ID (<span class="name">SCLEX_...</span>) by calling
<code>SCI_SETLEXERLANGUAGE("&lt;name&gt;")</code> or <code>SCI_SETLEXER(SCLEX_*)</code>.</p>
- <p>With Scintilla 5, the normal technique s to call Lexilla's <span class="name">CreateLexer</span> function
- with a lexer name then apply the result with
+ <p>With Scintilla 5, the normal technique is to call Lexilla's <span class="name">CreateLexer</span> function
+ with a lexer name, then apply the result with
Scintilla's <span class="name">SCI_SETILEXER</span> method:<br />
<code>ILexer5 *pLexer = CreateLexer("&lt;name&gt;")<br />
SCI_SETILEXER(pLexer)</code></p>