diff options
| -rw-r--r-- | doc/Scintilla5Migration.html | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/doc/Scintilla5Migration.html b/doc/Scintilla5Migration.html index 97f019e62..3f8b916ee 100644 --- a/doc/Scintilla5Migration.html +++ b/doc/Scintilla5Migration.html @@ -187,7 +187,7 @@      <p>Load Lexilla using the appropriate operating system function: either LoadLibrary on Windows or      dlopen on Unix.</p>      <code class="windows">HMODULE lexillaLibrary = LoadLibrary(szLexillaPath);<br /></code> -    <code class="unix">void *lexillaLibrary = szLexillaPath(libPath, RTLD_LAZY);<br /></code> +    <code class="unix">void *lexillaLibrary = dlopen(szLexillaPath, RTLD_LAZY);<br /></code>      <p>Find the CreateLexer function inside the shared library using either GetProcAddress on Windows or      dlsym on Unix.</p>      <code class="windows">FARPROC fun = GetProcAddress(lexillaLibrary, LEXILLA_CREATELEXER);<br /></code> | 
