aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux.lux
diff options
context:
space:
mode:
authorEduardo Julian2018-07-03 18:13:55 -0400
committerEduardo Julian2018-07-03 18:13:55 -0400
commite828bada4bea51931b0c555a98bc5cd677d52e79 (patch)
treec4e245c2e0b7d04495fa7322a656a57f7eb3423b /stdlib/source/lux.lux
parentb7b0dd9bd952ede4710da157b40304d714229e04 (diff)
- Re-named ":!!" to ":assume".
Diffstat (limited to 'stdlib/source/lux.lux')
-rw-r--r--stdlib/source/lux.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux.lux b/stdlib/source/lux.lux
index 157208071..72e22a485 100644
--- a/stdlib/source/lux.lux
+++ b/stdlib/source/lux.lux
@@ -5945,9 +5945,9 @@
_
(fail "Wrong syntax for ^|>")))
-(macro: #export (:!! tokens)
+(macro: #export (:assume tokens)
{#.doc (doc "Coerces the given expression to the type of whatever is expected."
- (: Dinosaur (:!! (list 1 2 3))))}
+ (: Dinosaur (:assume (list 1 2 3))))}
(case tokens
(^ (list expr))
(do Monad<Meta>
@@ -5955,7 +5955,7 @@
(wrap (list (` ("lux coerce" (~ (type-to-code type)) (~ expr))))))
_
- (fail "Wrong syntax for :!!")))
+ (fail "Wrong syntax for :assume")))
(macro: #export (undefined tokens)
{#.doc (doc "Meant to be used as a stand-in for functions with undefined implementations."