From 0f699b1ebbe1487ecf221ec9e7eb4e37a2283b10 Mon Sep 17 00:00:00 2001 From: Ted Summer Date: Tue, 17 Dec 2019 09:37:28 -0700 Subject: [PATCH] chore(docs): default for propagate_positions=False --- docs/classes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/classes.md b/docs/classes.md index 021b2f4..6ec9dcc 100644 --- a/docs/classes.md +++ b/docs/classes.md @@ -32,7 +32,7 @@ The Lark class accepts a grammar string or file object, and keyword options: * **keep_all_tokens** - Don't throw away any terminals from the tree (Default=`False`) -* **propagate_positions** - Propagate line/column count to tree nodes, at the cost of performance (default=`True`) +* **propagate_positions** - Propagate line/column count to tree nodes, at the cost of performance (default=`False`) * **maybe_placeholders** - The `[]` operator returns `None` when not matched. Setting this to `False` makes it behave like the `?` operator, and return no value at all, which may be a little faster (default=`True`)