summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2015-09-18 20:57:45 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2015-09-18 20:57:45 +0300
commiteb446e68af5fc0a0298cf71ba067f0c4e13d9c78 (patch)
tree978b3cb471054cb6e95977b86f5b228058ec39d8 /README.md
parentbb64d42e549266d62295b5a9e1212e9580d47948 (diff)
Reflow a long paragraph
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 10 insertions, 1 deletions
diff --git a/README.md b/README.md
index b440d913..5db3e807 100644
--- a/README.md
+++ b/README.md
@@ -495,7 +495,16 @@ helpful for identifying each host.
(setq cider-known-endpoints '(("host-a" "10.10.10.1" "7888") ("host-b" "7888")))
```
-* If you are targeting the JVM and prefer a local copy of the JDK API documentation over Oracle's official copy (e.g., for [JavaSE 8](http://docs.oracle.com/javase/8/docs/api/)), per nREPL's [`javadoc-info` logic (accurate as of 29 Dec 2014)](http://docs.oracle.com/javase/8/docs/api/), you can arrange your project to include the **root** path of the local API doc (i.e., where the `index.html` is located) to be included on your classpath (i.e., where the doc HTML files can be located by `clojure.java.io/resource`). For example, for Leiningen, with the local API path being `/usr/share/doc/java/api/`, put the following line in `project.clj`:
+* If you are targeting the JVM and prefer a local copy of the JDK API
+ documentation over Oracle's official copy (e.g., for
+ [JavaSE 8](http://docs.oracle.com/javase/8/docs/api/)), per nREPL's
+ [`javadoc-info` logic (accurate as of 29 Dec 2014)](http://docs.oracle.com/javase/8/docs/api/),
+ you can arrange your project to include the **root** path of the local API doc
+ (i.e., where the `index.html` is located) to be included on your classpath
+ (i.e., where the doc HTML files can be located by
+ `clojure.java.io/resource`). For example, for Leiningen, with the local API
+ path being `/usr/share/doc/java/api/`, put the following line in
+ `project.clj`:
```clj
:dev {:resource-paths ["/usr/share/doc/java/api/"]}