Skip to content

Commit

Permalink
Apply ocamlformat
Browse files Browse the repository at this point in the history
  • Loading branch information
dinosaure committed Feb 8, 2021
1 parent 0d7fdf7 commit 1414e51
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/base64.ml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ let make_alphabet alphabet =

let length_alphabet { emap; _ } = Array.length emap

let alphabet { emap; _ } = String.init (Array.length emap) (fun i -> Char.chr emap.(i))
let alphabet { emap; _ } =
String.init (Array.length emap) (fun i -> Char.chr emap.(i))

let default_alphabet =
make_alphabet
Expand Down

0 comments on commit 1414e51

Please sign in to comment.