diff options
Diffstat (limited to 'src/interpreter/parser.ts')
-rw-r--r-- | src/interpreter/parser.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interpreter/parser.ts b/src/interpreter/parser.ts index 930b953..99a9038 100644 --- a/src/interpreter/parser.ts +++ b/src/interpreter/parser.ts @@ -33,7 +33,7 @@ export const isVariable = (term: LambdaTerm): term is Variable => { export const parse = ( term: string, allowUnderscores = false, - library = false + library = false, ) => { return peggyParser.parse(term, { peg$library: library, allowUnderscores }); }; |