From 8f93a709d17739d98a81d40e342c796f704e6ac5 Mon Sep 17 00:00:00 2001 From: Erez Shinan Date: Fri, 16 Oct 2020 23:40:23 +0300 Subject: [PATCH] Update json_tutorial.md --- docs/json_tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/json_tutorial.md b/docs/json_tutorial.md index 015b82c..65c6c78 100644 --- a/docs/json_tutorial.md +++ b/docs/json_tutorial.md @@ -79,7 +79,7 @@ By the way, if you're curious what these terminals signify, they are roughly equ Lark will accept this, if you really want to complicate your life :) You can find the original definitions in [common.lark](https://github.com/lark-parser/lark/blob/master/lark/grammars/common.lark). -They're don't strictly adhere to [json.org](https://json.org/) - but our purpose here is to accept json, not validate it. +They don't strictly adhere to [json.org](https://json.org/) - but our purpose here is to accept json, not validate it. Notice that terminals are written in UPPER-CASE, while rules are written in lower-case. I'll touch more on the differences between rules and terminals later.