aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/Scintilla5Migration.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/Scintilla5Migration.html')
-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>