@@ -10,11 +10,11 @@ implementation of [JSON Web
1010Tokens] ( https://datatracker.ietf.org/doc/html/rfc7519 ) .
1111
1212Starting with [ v4.0.0] ( https://github.com/golang-jwt/jwt/releases/tag/v4.0.0 )
13- this project adds Go module support, but maintains backwards compatibility with
13+ this project adds Go module support, but maintains backward compatibility with
1414older ` v3.x.y ` tags and upstream ` github.com/dgrijalva/jwt-go ` . See the
1515[ ` MIGRATION_GUIDE.md ` ] ( ./MIGRATION_GUIDE.md ) for more information. Version
1616v5.0.0 introduces major improvements to the validation of tokens, but is not
17- entirely backwards compatible.
17+ entirely backward compatible.
1818
1919> After the original author of the library suggested migrating the maintenance
2020> of ` jwt-go ` , a dedicated team of open source maintainers decided to clone the
@@ -24,15 +24,15 @@ entirely backwards compatible.
2424
2525
2626** SECURITY NOTICE:** Some older versions of Go have a security issue in the
27- crypto/elliptic. Recommendation is to upgrade to at least 1.15 See issue
27+ crypto/elliptic. The recommendation is to upgrade to at least 1.15 See issue
2828[ dgrijalva/jwt-go #216 ] ( https://github.com/dgrijalva/jwt-go/issues/216 ) for more
2929detail.
3030
3131** SECURITY NOTICE:** It's important that you [ validate the ` alg ` presented is
3232what you
3333expect] ( https://auth0.com/blog/critical-vulnerabilities-in-json-web-token-libraries/ ) .
3434This library attempts to make it easy to do the right thing by requiring key
35- types match the expected alg, but you should take the extra step to verify it in
35+ types to match the expected alg, but you should take the extra step to verify it in
3636your usage. See the examples provided.
3737
3838### Supported Go versions
@@ -41,7 +41,7 @@ Our support of Go versions is aligned with Go's [version release
4141policy] ( https://golang.org/doc/devel/release#policy ) . So we will support a major
4242version of Go until there are two newer major releases. We no longer support
4343building jwt-go with unsupported Go versions, as these contain security
44- vulnerabilities which will not be fixed.
44+ vulnerabilities that will not be fixed.
4545
4646## What the heck is a JWT?
4747
@@ -117,7 +117,7 @@ notable differences:
117117
118118This library is considered production ready. Feedback and feature requests are
119119appreciated. The API should be considered stable. There should be very few
120- backwards -incompatible changes outside of major version updates (and only with
120+ backward -incompatible changes outside of major version updates (and only with
121121good reason).
122122
123123This project uses [ Semantic Versioning 2.0.0] ( http://semver.org ) . Accepted pull
0 commit comments