diff options
author | scgilardi <scgilardi@gmail.com> | 2008-07-29 00:47:41 +0000 |
---|---|---|
committer | scgilardi <scgilardi@gmail.com> | 2008-07-29 00:47:41 +0000 |
commit | 96a96af944cf02de9112ed25527a0ac2db1f37d9 (patch) | |
tree | d6f20e7c5450a2123971c04b6370d114360ff742 | |
parent | e747ba8e2bd38db59555a6d5154a04c920d1a37a (diff) |
canonicalize format
-rw-r--r-- | lib/lib.clj | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/lib.clj b/lib/lib.clj index 554a1821..65f5aa92 100644 --- a/lib/lib.clj +++ b/lib/lib.clj @@ -212,8 +212,8 @@ "Returns a classpath-relative path given the name of a symbol" [name] (.. name - (replace \- \_) - (replace \. \/))) + (replace \- \_) + (replace \. \/))) (defn- lib-path "Returns the resource path for a lib" @@ -342,7 +342,7 @@ The arguments and semantics for :exclude, :only, and :rename are those documented for clojure/refer. - + A flag is a keyword. Recognized flags: :require, :use, :reload, :reload-all, :verbose @@ -416,7 +416,7 @@ The arguments and semantics for :exclude, :only, and :rename are those documented for clojure/refer. - + A flag is a keyword. Recognized flags: :reload, :reload-all, :verbose |