Skip to content

Commit

Permalink
add more missing quotes and commas
Browse files Browse the repository at this point in the history
  • Loading branch information
brianstrauch committed Oct 6, 2023
1 parent 29d9bff commit afe69f4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ Now we have an authentication client, we can interact with the Auth0 Authenticat
Usage
import (
github.com/auth0/go-auth0
github.com/auth0/go-auth0/management
"github.com/auth0/go-auth0"
"github.com/auth0/go-auth0/management"
)
Initialize a new client using a domain, client ID and secret.
m, err := management.New(
domain,
management.WithClientCredentials(context.Background(), id, secret)
management.WithClientCredentials(context.Background(), id, secret),
)
if err != nil {
// handle err
Expand Down Expand Up @@ -110,7 +110,7 @@ new client.
m, err := management.New(
domain,
management.WithClientCredentials(context.Background(), id, secret),
management.WithDebug(true)
management.WithDebug(true),
)
## Request Options
Expand All @@ -122,7 +122,7 @@ on a request basis.
context.Background(),
management.Page(2),
management.PerPage(10),
management.IncludeFields("id", "name", "options")
management.IncludeFields("id", "name", "options"),
management.Parameter("strategy", "auth0"),
)
*/
Expand Down

0 comments on commit afe69f4

Please sign in to comment.