aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorscgilardi <scgilardi@gmail.com>2008-08-16 02:20:16 +0000
committerscgilardi <scgilardi@gmail.com>2008-08-16 02:20:16 +0000
commit9002784a23327d2bd4c76a20bacbcfec6452019a (patch)
tree6c4ceefd5254140fc9428c7ae0eae9ef67ef7f0e
parent0f0d41f607fd859daff9964429097ff9a0c78b08 (diff)
lib.clj: refine docs
-rw-r--r--lib/lib.clj13
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/lib.clj b/lib/lib.clj
index 2287a7ca..247811ca 100644
--- a/lib/lib.clj
+++ b/lib/lib.clj
@@ -72,12 +72,13 @@
;;
;; Prefix Lists
;;
-;; It is common for Clojure code to depend on several libs whose names
-;; have one or more initial components in common. When specifying lib or
-;; namespace names for Lib to use, prefix lists can be used to reduce
-;; repetition in the call. A prefix list is a list containing the shared
-;; prefix followed by lib or namespace names and/or prefix lists with the
-;; shared prefix elided. For example, the following are all equivalent:
+;; It is common for Clojure code to depend on several libs or namespaces
+;; whose names have one or more initial components in common. When
+;; specifying lib or namespace names for Lib to use, prefix lists can be
+;; used to reduce repetition in the call. A prefix list is a list
+;; containing the shared prefix followed by lib or namespace names and/or
+;; prefix lists with the shared prefix elided. For example, the following
+;; are all equivalent:
;; (load-libs 'a.b.c 'a.b.d 'a.c.e 'a.c.f) ; all names fully qualified
;; (load-libs '(a.b c d) '(a.c e f)) ; 'a.b and 'a.c extracted
;; (load-libs '(a (b c d) (c e f))) ; all common prefixes extracted