Skip to content
Open
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 oryx/clidoc/md_docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion selfservice/strategy/oidc/provider_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`

Expand Down
Loading