aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChouser <chouser@n01se.net>2009-03-19 20:38:14 +0000
committerChouser <chouser@n01se.net>2009-03-19 20:38:14 +0000
commitd94d82fefc2208316bdf759febe576ab046c9404 (patch)
treeb6509c0a90066429a6eb2ac92fafb1a4dbe5b16d
parent3baeb919015c22ace1a42efaf5eaa948963aea93 (diff)
repl-utils: fix typo in doc string
-rw-r--r--src/clojure/contrib/repl_utils.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clojure/contrib/repl_utils.clj b/src/clojure/contrib/repl_utils.clj
index 9d85d140..93dce311 100644
--- a/src/clojure/contrib/repl_utils.clj
+++ b/src/clojure/contrib/repl_utils.clj
@@ -145,7 +145,7 @@
(defn add-break-thread!
"Add the given thread to break-threads so that it will be stopped
any time the user presses Ctrl-C. Calls start-handling-break for
- you. Adds the current thread if none is give."
+ you. Adds the current thread if none is given."
([] (add-break-thread! (Thread/currentThread)))
([t]
(start-handling-break)