Skip to content

Commit 7a403a1

Browse files
committed
Incorrect word corrections
1 parent ba9da00 commit 7a403a1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

01-Authorization-RS256/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The sample includes these endpoints:
4444

4545
### Running the Example With Docker
4646

47-
In order to run the example with docker you need to have `docker` installed.
47+
In order to run the example with docker, you need to have `docker` installed.
4848

4949
You also need to set the environment variables as explained [previously](#add-your-credentials).
5050

@@ -54,7 +54,7 @@ Execute in command line `sh exec.sh` to run the Docker in Linux, or `.\exec.ps1`
5454

5555
Auth0 helps you to:
5656

57-
* Add authentication with [multiple authentication sources](https://docs.auth0.com/identityproviders), either social like **Google, Facebook, Microsoft Account, LinkedIn, GitHub, Twitter, Box, Salesforce, amont others**, or enterprise identity systems like **Windows Azure AD, Google Apps, Active Directory, ADFS or any SAML Identity Provider**.
57+
* Add authentication with [multiple authentication sources](https://docs.auth0.com/identityproviders), either social like **Google, Facebook, Microsoft Account, LinkedIn, GitHub, Twitter, Box, Salesforce, among others**, or enterprise identity systems like **Windows Azure AD, Google Apps, Active Directory, ADFS or any SAML Identity Provider**.
5858
* Add authentication through more traditional **[username/password databases](https://docs.auth0.com/mysql-connection-tutorial)**.
5959
* Add support for **[linking different user accounts](https://docs.auth0.com/link-accounts)** with the same user.
6060
* Support for generating signed [Json Web Tokens](https://docs.auth0.com/jwt) to call your APIs and **flow the user identity** securely.

01-Authorization-RS256/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ func main() {
9393

9494
// This route is only accessible if the user has a valid access_token with the read:messages scope
9595
// We are chaining the jwtmiddleware middleware into the negroni handler function which will check
96-
// for a valid token and and scope.
96+
// for a valid token and scope.
9797
r.Handle("/api/private-scoped", negroni.New(
9898
negroni.HandlerFunc(jwtMiddleware.HandlerWithNext),
9999
negroni.Wrap(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {

0 commit comments

Comments
 (0)