diff --git a/Scintilla.NET/Scintilla.NET.csproj b/Scintilla.NET/Scintilla.NET.csproj
index b7cc912..5481602 100644
--- a/Scintilla.NET/Scintilla.NET.csproj
+++ b/Scintilla.NET/Scintilla.NET.csproj
@@ -8,7 +8,7 @@
en-US
Source Editing Component based on Scintilla 5 series.
Copyright (c) 2018, Jacob Slusser. All rights reserved. VPKSoft, cyber960 2022.
- 5.3.2.0
+ 5.3.2.1
true
bin\$(Configuration)\ScintillaNET.xml
true
diff --git a/Shared/Scintilla.cs b/Shared/Scintilla.cs
index de2ed6c..b54449f 100644
--- a/Shared/Scintilla.cs
+++ b/Shared/Scintilla.cs
@@ -4804,7 +4804,7 @@ public string LexerName
#if SCINTILLA5
if (!SetLexerByName(value))
{
- throw new InvalidOperationException(@$"Lexer with the name of '{lexerName}' was not found.");
+ throw new InvalidOperationException(@$"Lexer with the name of '{value}' was not found.");
}
#elif SCINTILLA4
if (NativeMethods.NameConstantMap.ContainsValue(value))