Skip to content
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.

Commit

Permalink
Fixed a typo in Python docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasherranz committed Sep 13, 2015
1 parent 1feeb31 commit 941c5a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ String ciphertext = crypter.encrypt("Secret message");
Similarly a Python developer would call the following:

```python
crypter = Crypter.Read("/path/to/your/keys");
ciphertext = crypter.Encrypt("Secret message");
crypter = Crypter.Read("/path/to/your/keys")
ciphertext = crypter.Encrypt("Secret message")
```

Get involved
Expand Down

0 comments on commit 941c5a6

Please sign in to comment.