Skip to content

Commit 6cc47c3

Browse files
committed
Be more inclusive :)
1 parent 27d28c0 commit 6cc47c3

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
@@ -12,7 +12,7 @@ There are some scenarios where JSON Web Tokens are useful:
1212

1313
- **Authentication**: This is the typical 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 among systems of different domains.
1414

15-
- **Information Exchange**: JSON Web Tokens are a good way of securely transmitting information between parties, because as they can be signed, for example using a public/private key pair, you can be sure that the sender is who he says he is. Additionally, as the signature is calculated using the header and the payload, you can also verify that the content hasn't changed.
15+
- **Information Exchange**: JSON Web Tokens are a good way of securely transmitting information between parties, because as they can be signed, for example using a public/private key pair, you can be sure that the sender is who they says they are. Additionally, as the signature is calculated using the header and the payload, you can also verify that the content hasn't changed.
1616

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

0 commit comments

Comments
 (0)