summaryrefslogtreecommitdiff
path: root/dhall/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'dhall/src/lib.rs')
-rw-r--r--dhall/src/lib.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/dhall/src/lib.rs b/dhall/src/lib.rs
index c218aeb..8af5af9 100644
--- a/dhall/src/lib.rs
+++ b/dhall/src/lib.rs
@@ -39,14 +39,13 @@
//!
//! #[derive(Debug, Deserialize, SimpleStaticType)]
//! struct Point {
-//! x: usize,
-//! y: usize,
+//! x: u64,
+//! y: u64,
//! }
//!
//! fn main() {
//! // Some dhall data
-//! // ./Point can be populated using Point::get_type().to_string()
-//! let data = "{ x = 1, y = 1 + 1 } : ./Point";
+//! let data = "{ x = 1, y = 1 + 1 }";
//!
//! // Convert the dhall string to a Point.
//! let point: Point =