From 2088ed2b2110a7b8deed03f3554f788ad3daae9e Mon Sep 17 00:00:00 2001 From: Alex Miller Date: Mon, 31 Jul 2023 09:08:04 -0500 Subject: [PATCH] fix typo --- src/main/clojure/clojure/core/memoize.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/clojure/clojure/core/memoize.clj b/src/main/clojure/clojure/core/memoize.clj index b57b512..092900f 100644 --- a/src/main/clojure/clojure/core/memoize.clj +++ b/src/main/clojure/clojure/core/memoize.clj @@ -264,7 +264,7 @@ (defn build-memoizer "Builds a function that, given a function, returns a pluggable memoized version of it. `build-memoizer` takes a cache factory function, and the - argunments to that factory function -- at least one of those arguments + arguments to that factory function -- at least one of those arguments should be the function to be memoized (it's usually the first argument). `memoizer` above is a simpler version of `build-memoizer` that 'does the