summaryrefslogtreecommitdiff
path: root/src/errors/InvalidOptionalElement.txt
diff options
context:
space:
mode:
authorNanoTech2016-12-11 23:27:36 -0600
committerNanoTech2017-03-10 23:48:29 -0600
commit5c00b978b0bc0c1eeb64682cba6aa338fea320bf (patch)
treed9935794062180474b5bd6a51ab1d5f4bd864a4e /src/errors/InvalidOptionalElement.txt
parentefd52ef33c15316dbd39390d55022708488a53b8 (diff)
Start implementing error explanations
Diffstat (limited to '')
-rw-r--r--src/errors/InvalidOptionalElement.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/errors/InvalidOptionalElement.txt b/src/errors/InvalidOptionalElement.txt
new file mode 100644
index 0000000..0254220
--- /dev/null
+++ b/src/errors/InvalidOptionalElement.txt
@@ -0,0 +1,29 @@
+Explanation: An ❰Optional❱ element must have a type matching the type annotation
+
+For example, this is a valid ❰Optional❱ value:
+
+
+ ┌────────────────────────┐
+ │ [1] : Optional Integer │ ❰1❱ is an ❰Integer❱, which matches the type
+ └────────────────────────┘
+
+
+... but this is $_NOT a valid ❰Optional❱ value:
+
+
+ ┌────────────────────────────┐
+ │ ["ABC"] : Optional Integer │ ❰"ABC"❱ is not an ❰Integer❱
+ └────────────────────────────┘
+
+
+Your ❰Optional❱ element should have this type:
+
+↳ $txt0
+
+... but the element you provided:
+
+↳ $txt1
+
+... has this type instead:
+
+↳ $txt2