From ea73244b69b3025caf09acc0cc406f09e66f638d Mon Sep 17 00:00:00 2001 From: James Baldwin Date: Fri, 17 May 2024 11:07:33 -0400 Subject: [PATCH] Wording in readme (#731) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9a5d4164..a267f6e4 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ defmodule MyApp.Guardian do def subject_for_token(%{id: id}, _claims) do # You can use any value for the subject of your token but # it should be useful in retrieving the resource later, see - # how it being used on `resource_from_claims/1` function. + # how it is being used on `resource_from_claims/1` function. # A unique `id` is a good subject, a non-unique email address # is a poor subject. sub = to_string(id)