From 8c4d38233b31048f714f8062aa86590f7a63abb0 Mon Sep 17 00:00:00 2001 From: Scott Olsen Date: Fri, 24 May 2019 12:30:00 -0400 Subject: [PATCH] Map: Fix small typo in doc empty? --- core/Map.carp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Map.carp b/core/Map.carp index 612534e9..8f6d65fe 100644 --- a/core/Map.carp +++ b/core/Map.carp @@ -180,7 +180,7 @@ (set! c (+ c (Array.length (Bucket.entries (Array.nth (buckets m) i)))))) c)) - (doc empty "Check whether the map m is empty.") + (doc empty? "Check whether the map m is empty.") (defn empty? [m] (= (length m) 0))