Skip to content

Commit

Permalink
Merge pull request #28 from djs55/readme
Browse files Browse the repository at this point in the history
Fix error in README.md
  • Loading branch information
dinosaure authored Feb 17, 2019
2 parents 3a172dd + e3950e7 commit bd05704
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Simple encoding and decoding.
utop # #require "base64";;
utop # let enc = Base64.encode_exn "OCaml rocks!";;
val enc : string = "T0NhbWwgcm9ja3Mh"
utop # let plain = B64.decode_exn enc;;
utop # let plain = Base64.decode_exn enc;;
val plain : string = "OCaml rocks!"
```

Expand Down

0 comments on commit bd05704

Please sign in to comment.