Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #703

Merged
merged 1 commit into from
Aug 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion guides/plug/pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ end

## Module version

You can take the above setup and wrap it up in a plug all of it's own.
You can take the above setup and wrap it up in a plug all of its own.

```elixir
defmodule AuthMe.UserManager.Pipeline do
Expand Down
2 changes: 1 addition & 1 deletion lib/guardian/token/jwt.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Guardian.Token.Jwt do
Deals with things JWT. This module should not be used directly.

It is intended to be used by Guardian on behalf of your implementation
as it's token module.
as its token module.

Token types are encoded in the `typ` field.

Expand Down
2 changes: 1 addition & 1 deletion test/guardian_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ defmodule GuardianTest do

describe "encode_and_sign" do
@resource %{id: "bobby"}
test "the impl has access to it's config", ctx do
test "the impl has access to its config", ctx do
assert ctx.impl.config(:token_module) == Guardian.Support.TokenModule
end

Expand Down