diff options
author | scgilardi <scgilardi@gmail.com> | 2008-08-19 06:20:24 +0000 |
---|---|---|
committer | scgilardi <scgilardi@gmail.com> | 2008-08-19 06:20:24 +0000 |
commit | a7eaa3f1e012e0f228771cd047984ee8b202e326 (patch) | |
tree | 2303d7fb4b77db2c158632a5c66871ec1fb7acac | |
parent | 86a5a6e632af045705a473d429934c8c1947fc53 (diff) |
transition/lib.clj: refine comments
-rw-r--r-- | transition/lib.clj | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/transition/lib.clj b/transition/lib.clj index 6cfded92..32dfed54 100644 --- a/transition/lib.clj +++ b/transition/lib.clj @@ -301,9 +301,9 @@ @*loaded-libs*) (defn load-resources - "Loads Clojure code from Java resources in classpath. A path is - interpreted as classpath-relative if it begins with a slash or relative - to the root directory for the current namespace otherwise." + "Loads Clojure code from resources in classpath. A path is interpreted as + classpath-relative if it begins with a slash or relative to the root + directory for the current namespace otherwise." [& paths] (doseq path paths (let [path (if (.startsWith path "/") |