Skip to content

Commit ba3115c

Browse files
committed
Correctly set todo comments and behaviour
1 parent 1803671 commit ba3115c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lib/pow/store/base.ex

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ defmodule Pow.Store.Base do
2727
quote do
2828
@behaviour unquote(__MODULE__)
2929

30+
# TODO: Remove by 1.1.0
31+
@behaviour Pow.Store.Backend.Base
32+
3033
@spec put(Config.t(), binary(), any()) :: :ok
3134
def put(config, key, value),
3235
do: put(config, backend_config(config), key, value)
@@ -57,9 +60,7 @@ defmodule Pow.Store.Base do
5760

5861
defoverridable unquote(__MODULE__)
5962

60-
@behaviour Pow.Store.Backend.Base
61-
62-
# Remove by 1.1.0
63+
# TODO: Remove by 1.1.0
6364
defoverridable Pow.Store.Backend.Base
6465
end
6566
end

0 commit comments

Comments
 (0)