Skip to content

Commit

Permalink
Fix message when correcting invalid keys
Browse files Browse the repository at this point in the history
  • Loading branch information
joelittlejohn committed Apr 24, 2014
1 parent 8a4caa1 commit 13ca6d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion environ/src/environ/core.clj
Expand Up @@ -10,7 +10,7 @@

(defn- sanitize [k]
(let [s (keywordize (name k))]
(if-not (= k s) (println "Warning: environ key " k " was has been corrected to " s))
(if-not (= k s) (println "Warning: environ key " k " has been corrected to " s))
s))

(defn- read-system-env []
Expand Down

0 comments on commit 13ca6d2

Please sign in to comment.