summaryrefslogtreecommitdiff
path: root/dhall/src/simple.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--dhall/src/simple.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/dhall/src/simple.rs b/dhall/src/simple.rs
index 9c4d6ba..32c9c79 100644
--- a/dhall/src/simple.rs
+++ b/dhall/src/simple.rs
@@ -12,11 +12,11 @@ pub struct SimpleValue {
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum SValKind {
Num(NumKind),
+ Text(String),
Optional(Option<SimpleValue>),
List(Vec<SimpleValue>),
Record(BTreeMap<String, SimpleValue>),
Union(String, Option<SimpleValue>),
- Text(String),
}
#[derive(Debug, Clone, PartialEq, Eq)]