Skip to content

Commit

Permalink
Import Bitwise module instead of "use Bitwise" (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
moogle19 committed Feb 22, 2022
1 parent 5390388 commit 37192e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/hpax/huffman.ex
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule HPAX.Huffman do
@moduledoc false

use Bitwise
import Bitwise, only: [>>>: 2]

# This file is downloaded from the spec directly.
# http://httpwg.org/specs/rfc7541.html#huffman.code
Expand Down
2 changes: 1 addition & 1 deletion lib/hpax/types.ex
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule HPAX.Types do
@moduledoc false

use Bitwise
import Bitwise, only: [<<<: 2]

alias HPAX.Huffman

Expand Down

0 comments on commit 37192e9

Please sign in to comment.