Skip to content

Commit

Permalink
Correct mispelling in readme and Mix task (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stratus3D authored May 30, 2024
1 parent 7e80596 commit 2b1b752
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ can install the authentication system with the following command
```console
$ mix phx.gen.oidcc \
MyApp.ConfigProviderName \
"https://isser.example.com" \
"https://issuer.example.com" \
"client_id" \
"client_secret"
```
Expand Down
6 changes: 3 additions & 3 deletions lib/mix/tasks/phx.gen.oidcc.ex
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ defmodule Mix.Tasks.Phx.Gen.Oidcc do
```console
$ mix phx.gen.oidcc \\
MyApp.ConfigProviderName \\\
"https://isser.example.com" \\
"https://issuer.example.com" \\
"client_id" \\
"client_secret"
```
Expand Down Expand Up @@ -159,13 +159,13 @@ defmodule Mix.Tasks.Phx.Gen.Oidcc do
#{msg}
mix phx.gen.oidcc expects a provider configuration worker name, followed by
the isser, client id and client secret.
the issuer, client id and client secret.
For example:
mix phx.gen.oidcc \\
MyApp.ConfigProviderName \\
"https://isser.example.com" \\
"https://issuer.example.com" \\
"client_id" \\
"client_secret"
""")
Expand Down

0 comments on commit 2b1b752

Please # to comment.