aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/control/function.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/control/function.lux5
1 files changed, 2 insertions, 3 deletions
diff --git a/stdlib/source/lux/control/function.lux b/stdlib/source/lux/control/function.lux
index d9b8e36c5..855f585c9 100644
--- a/stdlib/source/lux/control/function.lux
+++ b/stdlib/source/lux/control/function.lux
@@ -6,9 +6,8 @@
(def: #export identity
{#.doc (doc "Identity function."
"Does nothing to its argument and just returns it."
- (let [value "foo"]
- (is? (identity value)
- value)))}
+ (is? (identity value)
+ value))}
(All [a] (-> a a))
(|>>))