Skip to content

Commit 52ba4c0

Browse files
authored
Merge pull request jsonwebtoken#244 from gitname/patch-1
Clarify complex sentence
2 parents 8278790 + 9b8c348 commit 52ba4c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

views/md/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Here are some scenarios where JSON Web Tokens are useful:
1414

1515
- **Authentication**: This is the most common scenario for using JWT. Once the user is logged in, each subsequent request will include the JWT, allowing the user to access routes, services, and resources that are permitted with that token. Single Sign On is a feature that widely uses JWT nowadays, because of its small overhead and its ability to be easily used across different domains.
1616

17-
- **Information Exchange**: JSON Web Tokens are a good way of securely transmitting information between parties, because as they can be signed, for example using public/private key pairs, you can be sure that the senders are who they say they are. Additionally, as the signature is calculated using the header and the payload, you can also verify that the content hasn't been tampered with.
17+
- **Information Exchange**: JSON Web Tokens are a good way of securely transmitting information between parties. Because JWTs can be signedfor example, using public/private key pairsyou can be sure the senders are who they say they are. Additionally, as the signature is calculated using the header and the payload, you can also verify that the content hasn't been tampered with.
1818

1919
## What is the JSON Web Token structure?
2020
JSON Web Tokens consist of three parts separated by dots (`.`), which are:

0 commit comments

Comments
 (0)