aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/data/bool.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/data/bool.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/lux/data/bool.lux b/stdlib/source/lux/data/bool.lux
index e737c6118..9ccbc87ab 100644
--- a/stdlib/source/lux/data/bool.lux
+++ b/stdlib/source/lux/data/bool.lux
@@ -1,4 +1,4 @@
-(;module:
+(.module:
lux
(lux (control [monoid #+ Monoid]
[eq #+ Eq]
@@ -38,13 +38,13 @@
(def: (decode input)
(case input
- "true" (#;Right true)
- "false" (#;Right false)
- _ (#;Left "Wrong syntax for Bool."))))
+ "true" (#.Right true)
+ "false" (#.Right false)
+ _ (#.Left "Wrong syntax for Bool."))))
## [Values]
(def: #export complement
- {#;doc "Generates the complement of a predicate.
+ {#.doc "Generates the complement of a predicate.
That is a predicate that returns the oposite of the original predicate."}
(All [a] (-> (-> a Bool) (-> a Bool)))
(compose not))