From 1b8928a8ec2883d44ea5a9ccae2e8d378e819dcf Mon Sep 17 00:00:00 2001 From: John Gabriele Date: Sat, 28 Nov 2020 14:35:17 -0500 Subject: [PATCH] doc for identity This function only takes one argument anyway, and errors if you try to pass more. --- src/boot/boot.janet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boot/boot.janet b/src/boot/boot.janet index 3da90a8d..d85d4ccf 100644 --- a/src/boot/boot.janet +++ b/src/boot/boot.janet @@ -692,7 +692,7 @@ ;(tuple/slice functions 4 -1))))) (defn identity - "A function that returns its first argument." + "A function that returns its argument." [x] x)