Skip to content

Commit

Permalink
these aliases do not need to be public
Browse files Browse the repository at this point in the history
  • Loading branch information
dropwhile committed Oct 26, 2024
1 parent f44d12c commit 93beb77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gbase32_clockwork/gbase32.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ type EncodeBook =
type DecodeBook =
Dict(String, Int)

pub type EncodeFn =
type EncodeFn =
fn(String) -> Result(String, String)

pub type DecodeFn =
type DecodeFn =
fn(String) -> Result(String, String)

/// Create a new encoder that can be be reused to encode strings in base32 clockwork
Expand Down

0 comments on commit 93beb77

Please sign in to comment.