Skip to content

Commit dc57888

Browse files
Alexandrsybrenstuvel
authored andcommitted
Fixes a typo in docstrings (sybrenstuvel#83)
1 parent 9f57740 commit dc57888

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

rsa/key.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ class PublicKey(AbstractKey):
182182
This key is also known as the 'encryption key'. It contains the 'n' and 'e'
183183
values.
184184
185-
Supports attributes as well as dictionary-like access. Attribute accesss is
185+
Supports attributes as well as dictionary-like access. Attribute access is
186186
faster, though.
187187
188188
>>> PublicKey(5, 3)
@@ -348,7 +348,7 @@ class PrivateKey(AbstractKey):
348348
This key is also known as the 'decryption key'. It contains the 'n', 'e',
349349
'd', 'p', 'q' and other values.
350350
351-
Supports attributes as well as dictionary-like access. Attribute accesss is
351+
Supports attributes as well as dictionary-like access. Attribute access is
352352
faster, though.
353353
354354
>>> PrivateKey(3247, 65537, 833, 191, 17)

0 commit comments

Comments
 (0)