Skip to content

Commit 58353ff

Browse files
committed
Update readme
1 parent febb385 commit 58353ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Run `mix deps.get` to install it.
3131

3232
## Getting started (Phoenix)
3333

34-
**Umbrella project:** In an umbrella project run `mix pow.ecto.install` inside your Ecto app instead of `mix pow.install`, and then continue with updating `config.ex`, `endpoint.ex` and `router.ex` inside your Phoenix app.
34+
**Umbrella project:** In an umbrella project run `mix pow.ecto.install` inside your Ecto app instead of `mix pow.install`, and then continue with updating `config.ex`, `endpoint.ex` and `router.ex` inside your Phoenix app using `:my_app_web` in place of `:my_app` as the otp app.
3535

3636
Install the necessary files:
3737

test/pow/ecto/schema/password_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ defmodule Pow.Ecto.Schema.PasswordTest do
77
@password "secret"
88

99
test "pbkdf2_hash/1" do
10-
assert [algo, iterations, salt, _hash] = String.split(Password.pbkdf2_hash(@password, []), "$", trim: true)
10+
assert [algo, iterations, _salt, _hash] = String.split(Password.pbkdf2_hash(@password, []), "$", trim: true)
1111

1212
assert algo == "pbkdf2-sha512"
1313
assert iterations == "100000"

0 commit comments

Comments
 (0)