Skip to content

Commit 42770b4

Browse files
committed
fix find rule parser
1 parent 23ef2ac commit 42770b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SimpleStateMachine.StructuralSearch/StructuralSearch/FindRulesParser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ internal static readonly Parser<char, Func<IRule, IRule>> Not
6060
internal static readonly Parser<char, IRule> Rule =
6161
Parser.Map((name, rule) => new Rule(name, rule),
6262
CommonTemplateParser.Placeholder.TrimStart(),
63-
Expr)
63+
Expr.TrimStart())
6464
.As<char, Rule, IRule>();
6565

6666
internal static IRule ParseTemplate(string str)

0 commit comments

Comments
 (0)