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"`