Skip to content

Commit 5e7c0cc

Browse files
authored
Use import Bitwise instead of use Bitwise (#29)
1 parent e9a3b1c commit 5e7c0cc

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/plug/crypto.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ defmodule Plug.Crypto do
66
`Plug.Crypto.MessageEncryptor`, and `Plug.Crypto.MessageVerifier`.
77
"""
88

9-
use Bitwise
9+
import Bitwise
1010
alias Plug.Crypto.{KeyGenerator, MessageVerifier, MessageEncryptor}
1111

1212
@doc """

lib/plug/crypto/key_generator.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ defmodule Plug.Crypto.KeyGenerator do
1414
See http://tools.ietf.org/html/rfc2898#section-5.2
1515
"""
1616

17-
use Bitwise
17+
import Bitwise
1818
@max_length bsl(1, 32) - 1
1919

2020
@doc """

0 commit comments

Comments
 (0)