diff options
author | scgilardi <scgilardi@gmail.com> | 2008-07-29 00:39:37 +0000 |
---|---|---|
committer | scgilardi <scgilardi@gmail.com> | 2008-07-29 00:39:37 +0000 |
commit | e747ba8e2bd38db59555a6d5154a04c920d1a37a (patch) | |
tree | 9684923ce4f414cbebcd4690bc9711c87df0dac3 | |
parent | 05c513add11855cfbaf2f9738a2680d61662ee6e (diff) |
make package paths legal
-rw-r--r-- | lazy_seqs/lazy_seqs.clj | 6 | ||||
-rw-r--r-- | ns_utils/ns_utils.clj | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/lazy_seqs/lazy_seqs.clj b/lazy_seqs/lazy_seqs.clj index 0680cb3e..9ffd72f4 100644 --- a/lazy_seqs/lazy_seqs.clj +++ b/lazy_seqs/lazy_seqs.clj @@ -6,7 +6,7 @@ ;; this license. You must not remove this notice, or any other, from this ;; software. ;; -;; lazy-seqs.clj +;; lazy-seqs ;; ;; == Lazy sequences == ;; @@ -32,10 +32,10 @@ ;; scgilardi (gmail) ;; Created 07 June 2008 -(clojure/in-ns 'clojure-contrib.lazy-seqs) +(clojure/in-ns 'clojure.contrib.lazy-seqs) (clojure/refer 'clojure) -(clojure-contrib.lib/use '(clojure-contrib def)) +(clojure.contrib.lib/use '(clojure.contrib def)) (defvar primes (lazy-cat [2 3 5 7] diff --git a/ns_utils/ns_utils.clj b/ns_utils/ns_utils.clj index 9b19bc22..a165b1f8 100644 --- a/ns_utils/ns_utils.clj +++ b/ns_utils/ns_utils.clj @@ -6,7 +6,7 @@ ;; the terms of this license. ;; You must not remove this notice, or any other, from this software. ;; -;; ns-utils.clj +;; ns-utils ;; ;; Namespace Utilities ;; @@ -36,7 +36,7 @@ ;; scgilardi (gmail) ;; 23 April 2008 -(clojure/in-ns 'clojure-contrib.ns-utils) +(clojure/in-ns 'clojure.contrib.ns-utils) (clojure/refer 'clojure) ;; Namespace Utilities |