From e7511d7d2cd0e32ed7d38fb6a0b4b4695866826a Mon Sep 17 00:00:00 2001 From: Mira Sato <275437409+oab24413gmai@users.noreply.github.com> Date: Thu, 14 May 2026 05:41:24 +0000 Subject: [PATCH] fix: duplicated "the" in clidoc/md_docs and oidc/provider_config comments Signed-off-by: Mira Sato <275437409+oab24413gmai@users.noreply.github.com> --- oryx/clidoc/md_docs.go | 2 +- selfservice/strategy/oidc/provider_config.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/oryx/clidoc/md_docs.go b/oryx/clidoc/md_docs.go index 9932475fad26..c4e12491ec21 100644 --- a/oryx/clidoc/md_docs.go +++ b/oryx/clidoc/md_docs.go @@ -144,7 +144,7 @@ func GenMarkdownTree(cmd *cobra.Command, dir string) error { return GenMarkdownTreeCustom(cmd, dir, emptyStr, identity) } -// GenMarkdownTreeCustom is the the same as GenMarkdownTree, but +// GenMarkdownTreeCustom is the same as GenMarkdownTree, but // with custom filePrepender and linkHandler. func GenMarkdownTreeCustom(cmd *cobra.Command, dir string, filePrepender, linkHandler func(string) string) error { for _, c := range cmd.Commands() { diff --git a/selfservice/strategy/oidc/provider_config.go b/selfservice/strategy/oidc/provider_config.go index 4a1432917527..a95329e08c64 100644 --- a/selfservice/strategy/oidc/provider_config.go +++ b/selfservice/strategy/oidc/provider_config.go @@ -96,7 +96,7 @@ type Configuration struct { // Can be either `userinfo` or `me` or `oid`. // If the value is `userinfo` then the subject identifier is taken from sub field of userinfo standard endpoint response. // If the value is `me` then the `id` field of https://graph.microsoft.com/v1.0/me response is taken as subject. - // If the value is `oid` then the the oid (Object ID) is taken to identify users across different services. + // If the value is `oid` then the oid (Object ID) is taken to identify users across different services. // The default is `userinfo`. SubjectSource string `json:"subject_source"`