We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65a8d40 commit 5b79c11Copy full SHA for 5b79c11
src/OneScript.Language/SyntaxAnalysis/LocalizedErrors.cs
@@ -61,7 +61,7 @@ public static CodeError TokenExpected(params Token[] expected)
61
var names = String.Join("/", expected.Select(x => LanguageDef.GetTokenName(x)));
62
var aliases = String.Join("/", expected.Select(x => LanguageDef.GetTokenAlias(x)));
63
64
- return Create($"Ожидается один из симолов: {names}", $"Expecting one of symbols: {names}");
+ return Create($"Ожидается один из символов: {names}", $"Expecting one of symbols: {aliases}");
65
66
}
67
0 commit comments