Skip to content

Commit ab52890

Browse files
authored
grammar fixes
1 parent bbf18e1 commit ab52890

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/jwe.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ JSON Web Encryption (JWE)
66
JSON Web Encryption (JWE) represents encrypted content using JSON-based data
77
structures.
88

9-
It's assumed that you know all you need to know about key handling if not
9+
It is assumed that you know all you need to know about key handling if not
1010
please spend some time reading keyhandling_ .
1111

1212
When it comes to JWE there are basically 2 things you want to be able to do:
@@ -17,7 +17,7 @@ Encrypting a document
1717
---------------------
1818

1919
This is the high level way of doing things.
20-
There are few steps you have to go through. Let us start with an example and then break it into its parts::
20+
There are a few steps you have to go through. Let us start with an example and then break it into its parts::
2121

2222
>>> from cryptojwt.jwk.rsa import RSAKey
2323
>>> from cryptojwt.jwe.jwe import JWE
@@ -31,9 +31,9 @@ There are few steps you have to go through. Let us start with an example and the
3131

3232
The steps:
3333

34-
1. You need an encryption key. The key *MUST* be instances of
34+
1. You need an encryption key. The key *MUST* be an instance of
3535
:py:class:`cryptojwt.jwk.JWK`.
36-
2. You need the information that are to be signed. It must be in the form of a string.
36+
2. You need the information that is to be signed. It must be in the form of a string.
3737
3. You initiate the encryptor, provide it with the message and other
3838
needed information.
3939
4. And then you encrypt as described in RFC7516_ .
@@ -74,4 +74,4 @@ or if you know what you're doing::
7474

7575

7676

77-
.. _RFC7516: https://tools.ietf.org/html/rfc7516
77+
.. _RFC7516: https://tools.ietf.org/html/rfc7516

0 commit comments

Comments
 (0)