From d6126fcb2586e813d88c230f7a7180633a0a649b Mon Sep 17 00:00:00 2001 From: Jim Date: Sun, 23 Nov 2008 16:51:49 +0000 Subject: [PATCH] Changed stubfn doc 'lists' to 'vectors' --- fact.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fact.clj b/fact.clj index 63278b2..fd3669e 100644 --- a/fact.clj +++ b/fact.clj @@ -73,7 +73,7 @@ :values ~(vec values)))))) (defn stubfn - "Given a map of argument lists and return values, construct a function to + "Given a map of argument vectors and return values, construct a function to return the value associated with the key of arguments." [result-map] (fn [& args] (result-map (vec args))))