summaryrefslogtreecommitdiff
path: root/dhall/src/error/text/InvalidFieldType.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/InvalidFieldType.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/InvalidFieldType.txt')
-rw-r--r--dhall/src/error/text/InvalidFieldType.txt34
1 files changed, 0 insertions, 34 deletions
diff --git a/dhall/src/error/text/InvalidFieldType.txt b/dhall/src/error/text/InvalidFieldType.txt
deleted file mode 100644
index 4f76a64..0000000
--- a/dhall/src/error/text/InvalidFieldType.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Explanation: Every record type documents the type of each field, like this:
-
- ┌──────────────────────────────────────────────┐
- │ { foo : Integer, bar : Integer, baz : Text } │
- └──────────────────────────────────────────────┘
-
-However, fields cannot be annotated with expressions other than types
-
-For example, these record types are $_NOT valid:
-
-
- ┌────────────────────────────┐
- │ { foo : Integer, bar : 1 } │
- └────────────────────────────┘
- ⇧
- ❰1❱ is an ❰Integer❱ and not a ❰Type❱
-
-
- ┌───────────────────────────────┐
- │ { foo : Integer, bar : Type } │
- └───────────────────────────────┘
- ⇧
- ❰Type❱ is a ❰Kind❱ and not a ❰Type❱
-
-
-You provided a record type with a key named:
-
-↳ $txt0
-
-... annotated with the following expression:
-
-↳ $txt1
-
-... which is not a type