aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/meta.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/meta.lux')
-rw-r--r--stdlib/source/library/lux/meta.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/library/lux/meta.lux b/stdlib/source/library/lux/meta.lux
index 26d7d44c7..a3ae310b0 100644
--- a/stdlib/source/library/lux/meta.lux
+++ b/stdlib/source/library/lux/meta.lux
@@ -279,7 +279,7 @@
(-> Name (Meta Global))
(do ..monad
[name (..normal name)
- #let [[normal_module normal_short] name]]
+ .let [[normal_module normal_short] name]]
(function (_ compiler)
(case (: (Maybe Global)
(do maybe.monad
@@ -364,7 +364,7 @@
{#.doc "Looks-up the type of either a local variable or a definition."}
(-> Name (Meta Type))
(do ..monad
- [#let [[_ _name] name]]
+ [.let [[_ _name] name]]
(case name
["" _name]
(either (var_type _name)
@@ -439,7 +439,7 @@
{#.doc "All the tags associated with a type definition."}
(-> Name (Meta (Maybe (List Name))))
(do ..monad
- [#let [[module name] type_name]
+ [.let [[module name] type_name]
module (..module module)]
(case (plist.get name (get@ #.types module))
(#.Some [tags _])
@@ -488,7 +488,7 @@
{#.doc "Given a tag, finds out what is its index, its related tag-list and its associated type."}
(-> Name (Meta [Nat (List Name) Type]))
(do ..monad
- [#let [[module name] tag_name]
+ [.let [[module name] tag_name]
=module (..module module)
this_module_name ..current_module_name
imported! (..imported? module)]