diff options
Diffstat (limited to 'stdlib/source/lux.lux')
| -rw-r--r-- | stdlib/source/lux.lux | 6 | 
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."  | 
