diff options
author | Stuart Sierra <mail@stuartsierra.com> | 2009-04-09 17:19:37 +0000 |
---|---|---|
committer | Stuart Sierra <mail@stuartsierra.com> | 2009-04-09 17:19:37 +0000 |
commit | 19641235676df4355ada6dfd2acb8ce2190642de (patch) | |
tree | 31be722425d3b26ab1a4dceaea3e7c48f5932f02 /src/clojure/contrib/singleton.clj | |
parent | 23eec91a3202a7c673d958c8a77a84b5397908af (diff) |
singleton.clj: fix namespace name
Diffstat (limited to 'src/clojure/contrib/singleton.clj')
-rw-r--r-- | src/clojure/contrib/singleton.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clojure/contrib/singleton.clj b/src/clojure/contrib/singleton.clj index 09664835..4761581d 100644 --- a/src/clojure/contrib/singleton.clj +++ b/src/clojure/contrib/singleton.clj @@ -12,7 +12,7 @@ ;; remove this notice, or any other, from this software. -(ns singleton) +(ns clojure.contrib.singleton) (defn singleton "Returns a memoized version of a function with no arguments. The |