Skip to content

Commit c53e16f

Browse files
author
Zach Tellman
committed
update codox config and readme link
1 parent 4797e20 commit c53e16f

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Java has a lot of different ways to represent a stream of bytes. Depending on the author and age of a library, it might use `byte[]`, `InputStream`, `ByteBuffer`, or `ReadableByteChannel`. If the bytes represent strings, there's also `String`, `Reader`, and `CharSequence` to worry about. Remembering how to convert between all of them is a thankless task, made that much worse by libraries which define their own custom representations, or composing them with Clojure's lazy sequences and stream representations.
44

5-
This library is a Rosetta stone for all the byte representations Java has to offer, and gives you the freedom to forget all the APIs you never wanted to know in the first place. Complete documentation can be found [here](http://ideolalia.com/byte-streams/byte-streams.html).
5+
This library is a Rosetta stone for all the byte representations Java has to offer, and gives you the freedom to forget all the APIs you never wanted to know in the first place. Complete documentation can be found [here](http://aleph.io/codox/byte-streams/).
66

77
### usage
88

project.clj

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,13 @@
1010
[codox-md "0.2.0" :exclusions [org.clojure/clojure]]]}}
1111
:test-selectors {:stress :stress
1212
:default (complement :stress)}
13-
:plugins [[codox "0.8.10"]
13+
:plugins [[lein-codox "0.9.4"]
1414
[lein-jammin "0.1.1"]
1515
[ztellman/lein-cljfmt "0.1.10"]]
1616
:cljfmt {:indents {#".*" [[:inner 0]]}}
17-
:codox {:src-dir-uri "https://github.com/ztellman/byte-streams/blob/master/"
18-
:src-linenum-anchor-prefix "L"
19-
:defaults {:doc/format :markdown}
20-
:include [byte-streams]}
17+
:codox {:source-uri "https://github.com/ztellman/byte-streams/blob/master/{filepath}#L{line}"
18+
:metadata {:doc/format :markdown}
19+
:namespaces [byte-streams]}
2120
:global-vars {*warn-on-reflection* true}
2221
:java-source-paths ["src"]
2322
:javac-options ["-target" "1.6" "-source" "1.6"]

0 commit comments

Comments
 (0)