summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/Tutorial.org4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/Tutorial.org b/examples/Tutorial.org
index 5cb9d38..6589965 100644
--- a/examples/Tutorial.org
+++ b/examples/Tutorial.org
@@ -11,7 +11,7 @@
To motivate your learning, you will be building up a parser for the
familiar JSON format, so , take a minute to scroll all the way
- through the [[https://www.json.org/json-en.html][definition document]].
+ through the [[https://www.json.org/json-en.html][JSON definition document]].
Notice the document's structure. At the top is a the definition of a
JSON object. That definition refers to other terms, like arrays and
@@ -130,7 +130,7 @@
** Jumping in with Whitespace
- Looking at the JSON document, you see that =whitespace= is any of
+ Looking at [[https://www.json.org/json-en.html][JSON definition document]], you see that =whitespace= is any of
the characters =space=, =linefeed=, =carriage return=, or
=horizontal tab=, repeated zero or more times.