From 6fc2f5a6bafca14df6dd3762058bdcdd4f05b819 Mon Sep 17 00:00:00 2001 From: evandrocoan Date: Mon, 17 Sep 2018 14:45:24 -0300 Subject: [PATCH] Fix #231 --- lark/lark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lark/lark.py b/lark/lark.py index 7bfe63a..6b065f8 100644 --- a/lark/lark.py +++ b/lark/lark.py @@ -40,7 +40,7 @@ class LarkOptions(object): debug - Affects verbosity (default: False) keep_all_tokens - Don't automagically remove "punctuation" tokens (default: False) cache_grammar - Cache the Lark grammar (Default: False) - postlex - Lexer post-processing (Requires standard lexer. Default: None) + postlex - Lexer post-processing (Default: None) Only works with the standard and contextual lexers. start - The start symbol (Default: start) profile - Measure run-time usage in Lark. Read results from the profiler proprety (Default: False) propagate_positions - Propagates [line, column, end_line, end_column] attributes into all tree branches.