aboutsummaryrefslogtreecommitdiff
path: root/documentation/book/the_lux_programming_language/appendix_c.md
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/book/the_lux_programming_language/appendix_c.md')
-rw-r--r--documentation/book/the_lux_programming_language/appendix_c.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/book/the_lux_programming_language/appendix_c.md b/documentation/book/the_lux_programming_language/appendix_c.md
index 5bfb731ea..0ca109331 100644
--- a/documentation/book/the_lux_programming_language/appendix_c.md
+++ b/documentation/book/the_lux_programming_language/appendix_c.md
@@ -66,7 +66,7 @@ The possibilities are endless when it comes to the refinement you can do, and wh
... Allows you to simultaneously bind and de-structure a value.
(def (hash (^.let set [element_hash _]))
(list#mix (function (_ elem acc)
- (n.+ (# element_hash hash elem) acc))
+ (n.+ (at element_hash hash elem) acc))
0
(set.list set)))
```