summaryrefslogtreecommitdiff
path: root/dhall/src/error/text/InvalidField.txt
diff options
context:
space:
mode:
authorNadrieril2019-11-11 18:00:57 +0000
committerNadrieril2019-11-11 18:00:57 +0000
commitada19118f894fbd71642ea683d9376cbbd756f7d (patch)
tree45e210c786d386182ba19d33dfe548522dbf5216 /dhall/src/error/text/InvalidField.txt
parent1ea6fe55eea2f1448f897e2a2805f7e0a1daac9b (diff)
Remove unused error texts
Those were copied from dhall-haskell back before I (Nadrieril) forked dhall-rust from Nanotech. They have never been used.
Diffstat (limited to 'dhall/src/error/text/InvalidField.txt')
-rw-r--r--dhall/src/error/text/InvalidField.txt35
1 files changed, 0 insertions, 35 deletions
diff --git a/dhall/src/error/text/InvalidField.txt b/dhall/src/error/text/InvalidField.txt
deleted file mode 100644
index bfbf106..0000000
--- a/dhall/src/error/text/InvalidField.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-Explanation: Every record literal is a set of fields assigned to values, like
-this:
-
- ┌────────────────────────────────────────┐
- │ { foo = 100, bar = True, baz = "ABC" } │
- └────────────────────────────────────────┘
-
-However, fields can only be terms and cannot be types or kinds
-
-For example, these record literals are $_NOT valid:
-
-
- ┌───────────────────────────┐
- │ { foo = 100, bar = Text } │
- └───────────────────────────┘
- ⇧
- ❰Text❱ is a type and not a term
-
-
- ┌───────────────────────────┐
- │ { foo = 100, bar = Type } │
- └───────────────────────────┘
- ⇧
- ❰Type❱ is a kind and not a term
-
-
-You provided a record literal with a key named:
-
-↳ $txt0
-
-... whose value is:
-
-↳ $txt1
-
-... which is not a term