diff --git a/examples.txt b/examples.txt index c0b7498..c309511 100644 --- a/examples.txt +++ b/examples.txt @@ -47,8 +47,8 @@ Recover Collection Functions String Functions String Formatting -Regular Expressions Text Templates +Regular Expressions JSON XML Time diff --git a/public/index.html b/public/index.html index 5dbce34..14d1d60 100644 --- a/public/index.html +++ b/public/index.html @@ -125,10 +125,10 @@
regexp
package docs
- Next example: Text Templates. + Next example: JSON.
diff --git a/public/string-formatting b/public/string-formatting index 8bd5dd2..43618a1 100644 --- a/public/string-formatting +++ b/public/string-formatting @@ -14,7 +14,7 @@ if (e.key == "ArrowRight") { - window.location.href = 'regular-expressions'; + window.location.href = 'text-templates'; } } @@ -442,7 +442,7 @@ and returns a string without printing it anywhere.- Next example: Regular Expressions. + Next example: Text Templates.
diff --git a/public/text-templates b/public/text-templates index 2b97618..665eb5b 100644 --- a/public/text-templates +++ b/public/text-templates @@ -9,12 +9,12 @@ onkeydown = (e) => { if (e.key == "ArrowLeft") { - window.location.href = 'regular-expressions'; + window.location.href = 'string-formatting'; } if (e.key == "ArrowRight") { - window.location.href = 'json'; + window.location.href = 'regular-expressions'; } } @@ -260,7 +260,7 @@ the range block{{.}}
is set to the current item of the iteration.<
- Next example: JSON. + Next example: Regular Expressions.