File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,9 @@ A Clojure library for accessing Javadocs in your REPL
77### deps.edn
88
99``` clojure
10- {:deps {org.clojure/java.doc {:git/url " https://github.com/clojure/java.javadoc"
11- :git/sha " f5fd8506d6607955b91d9fc2eb85f084ef84364b" }}}
10+ {:deps {org.clojure/java.doc {:git/url " https://github.com/clojure/java.doc"
11+ :git/tag " v0.1.0"
12+ :git/sha " ffc70e5" }}}
1213```
1314
1415### In the REPL with add-libs
@@ -19,7 +20,7 @@ For usage without modifying your project deps:
1920; ; This require is only necessary if not in user namespace
2021(require '[clojure.repl.deps :refer [add-lib]])
2122
22- (add-lib 'io.github.clojure/java.doc {:git/sha " f5fd8506d6607955b91d9fc2eb85f084ef84364b " })
23+ (add-lib 'io.github.clojure/java.doc {:git/tag " v0.1.0 " :git/ sha " ffc70e5 " })
2324
2425(require '[clojure.java.doc.api :refer [jdoc jdoc-data sigs]])
2526
@@ -32,7 +33,7 @@ For usage without modifying your project deps:
3233Invoke directly from the command line, useful for piping into a .md file to display in your editor:
3334
3435``` bash
35- clojure -Sdeps ' {:deps {org.clojure/java.doc {:git/url "https://github.com/clojure/java.doc" :git/sha "f5fd8506d6607955b91d9fc2eb85f084ef84364b "}}}' \
36+ clojure -Sdeps ' {:deps {org.clojure/java.doc {:git/url "https://github.com/clojure/java.doc" :git/tag "v0.1.0" :git/ sha "ffc70e5 "}}}' \
3637 -M -e " (require '[clojure.java.doc.api :refer [jdoc]]) (jdoc String)"
3738```
3839
You can’t perform that action at this time.
0 commit comments