summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfogus <mefogus@gmail.com>2010-11-23 20:21:05 -0500
committerStuart Halloway <stu@thinkrelevance.com>2010-11-29 21:07:19 -0500
commit3072bd7928f2e3a23b3144da89d5965b696528eb (patch)
treee9a794386a6f038746acda8fa203b626a085e78a
parent8bb9789f0ff510ccb0b48891923a1e5148bdfe69 (diff)
CLJ-674: Modified clojure.string docstring to remove the quote in the require directive
Signed-off-by: Stuart Halloway <stu@thinkrelevance.com>
-rw-r--r--src/clj/clojure/string.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clj/clojure/string.clj b/src/clj/clojure/string.clj
index fc601638..e7500717 100644
--- a/src/clj/clojure/string.clj
+++ b/src/clj/clojure/string.clj
@@ -12,7 +12,7 @@ It is poor form to (:use clojure.string). Instead, use require
with :as to specify a prefix, e.g.
(ns your.namespace.here
- (:require '[clojure.string :as str]))
+ (:require [clojure.string :as str]))
Design notes for clojure.string: