summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <cbeok@protonmail.com>2021-09-20 10:36:51 -0500
committerColin Okay <cbeok@protonmail.com>2021-09-20 10:36:51 -0500
commit0097eab23765aef596d1cb7f04aea6756d796a2e (patch)
tree4d41fd5e193d73897d18932d8e6b4185e2142548
parent0fff5c849017a51a4be5ff890e4180c839c28695 (diff)
tutorial tweakin
-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.