Browse Source

Fixed a typo in encryption documentation

Co-authored-by: timvisee <tim@visee.me>
okyanusoz 4 years ago
parent
commit
60146541f2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/encryption.md

+ 1 - 1
docs/encryption.md

@@ -1,6 +1,6 @@
 # File Encryption
 
-Send use 128-bit AES-GCM encryption via the [Web Crypto API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API) to encrypt files in the browser before uploading them to the server. The code is in [app/keychain.js](../app/keychain.js).
+Send uses 128-bit AES-GCM encryption via the [Web Crypto API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API) to encrypt files in the browser before uploading them to the server. The code is in [app/keychain.js](../app/keychain.js).
 
 ## Steps