Skip to content

Commit bd12d90

Browse files
committed
update project.clj, clarify mapped-stacktrace docstring
1 parent 42a263f commit bd12d90

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

project.clj

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
[org.clojure/tools.reader "0.8.10"]
1414
[org.clojure/google-closure-library "0.0-20140718-946a7d39"]
1515
[com.google.javascript/closure-compiler "v20150126"]
16-
[org.mozilla/rhino "1.7R4"]]
16+
[org.mozilla/rhino "1.7R5"]]
1717
:profiles {:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
18-
:1.6 {:dependencies [[org.clojure/clojure "1.6.0-master-SNAPSHOT"]]}}
18+
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}}
1919
:aliases {"test-all" ["with-profile" "test,1.5:test,1.6" "test"]
2020
"check-all" ["with-profile" "1.5:1.6" "check"]}
2121
:min-lein-version "2.0.0")

src/clj/cljs/repl.clj

+4-3
Original file line numberDiff line numberDiff line change
@@ -249,9 +249,10 @@
249249
:line <integer>
250250
:column <integer>}*]
251251
252-
:file must be a URL path (without protocol) relative to :output-dir. The
253-
returned mapped stacktrace will also contain :url entries to the original
254-
sources if it can be determined from the classpath."
252+
:file must be a URL path (without protocol) relative to :output-dir or a
253+
identifier delimited by angle brackets. The returned mapped stacktrace will
254+
also contain :url entries to the original sources if it can be determined
255+
from the classpath."
255256
([stacktrace] (mapped-stacktrace stacktrace nil))
256257
([stacktrace opts]
257258
(let [read-source-map' (memoize read-source-map)

0 commit comments

Comments
 (0)