Skip to content

Commit 0784fc7

Browse files
committed
Fix parser
1 parent 380242a commit 0784fc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SimpleStateMachine.StructuralSearch/CustomParsers/PlaceholderParser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ internal class PlaceholderParser : ParserWithLookahead<char, string>, IContextDe
1717
Constant.Space
1818
};
1919

20-
internal static readonly Parser<char, char> StringLiteralChar = Parser.AnyCharExcept(Constant.InvalidStringLiteralChars);
20+
internal static readonly Parser<char, char> StringLiteralChar = Parser.AnyCharExcept(InvalidStringLiteralChars);
2121

2222
private readonly string _name;
2323
private IParsingContext? _context;

0 commit comments

Comments
 (0)