Skip to content

Commit

Permalink
update README for new module name
Browse files Browse the repository at this point in the history
  • Loading branch information
avsm committed Dec 24, 2014
1 parent f2ac443 commit ef7dcf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ Simple encoding and decoding.

```shell
utop # #require "base64";;
utop # let enc = Base64.encode "OCaml rocks!";;
utop # let enc = B64.encode "OCaml rocks!";;
val enc : string = "T0NhbWwgcm9ja3Mh"
utop # let plain = Base64.decode enc;;
utop # let plain = B64.decode enc;;
val plain : string = "OCaml rocks!"
```

Expand Down

0 comments on commit ef7dcf3

Please sign in to comment.