From f3421cd8ee301feee7e12d9ebefea56a61963f57 Mon Sep 17 00:00:00 2001 From: Erez Shinan Date: Sun, 1 Apr 2018 11:33:37 +0300 Subject: [PATCH] Updated How to use Lark (markdown) --- How-to-use-Lark.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/How-to-use-Lark.md b/How-to-use-Lark.md index 07587b1..3e18b0b 100644 --- a/How-to-use-Lark.md +++ b/How-to-use-Lark.md @@ -8,7 +8,7 @@ This is the recommended process for working with Lark: 3. Try your grammar in Lark against each input sample. Make sure the resulting parse-trees make sense. - - You can perform steps 1-3 together, gradually growing your grammar to include more sentences. + - You can perform steps 1-3 repeatedly, gradually growing your grammar to include more sentences. 4. Use Lark's grammar features to [[shape the tree|Tree Construction]]: Get rid of superfluous rules by inlining them, and use aliases when specific cases need clarification.