Skip to content

Commit c886282

Browse files
committed
fix readme
1 parent c36da8d commit c886282

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

README.adoc

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,16 +82,18 @@ CAUTION: From version v0.3.2 and upward the library may require Java class versi
8282

8383
[source,clojure]
8484
----
85-
;; Adler32 example
86-
(adler32 (.getBytes "123456789"))
87-
=> 152961502
85+
;; CRC64 example
86+
(crc64 (.getBytes "123456789"))
87+
=> -7395533204333446662
8888
----
8989

90+
==== Alternatives
91+
9092
[source,clojure]
9193
----
92-
;; CRC64 example
93-
(crc64 (.getBytes "123456789"))
94-
=> -7395533204333446662
94+
;; Adler32 example
95+
(adler32 (.getBytes "123456789"))
96+
=> 152961502
9597
----
9698

9799
==== Digests

0 commit comments

Comments
 (0)