From 1ccc88dd9701d33516a632f3fa51131439e81b79 Mon Sep 17 00:00:00 2001 From: Kagami Hiiragi Date: Mon, 22 Dec 2014 00:24:51 +0300 Subject: [PATCH] Typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9673974..d2a664e 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ JavaScript Elliptic curve cryptography library for both browserify and node. ## Motivation -There is currently no any isomorphic ECC library which provide ECDSA, ECDH and ECIES for both Node.JS and Browser. So `eccrypto` is an attempt to create one. Current goals: +There is currently no any isomorphic ECC library which provides ECDSA, ECDH and ECIES for both Node.JS and Browser. So `eccrypto` is an attempt to create one. Current goals: * Implement ECDSA * Implement ECDH @@ -35,7 +35,7 @@ So we use [seck256k1](https://www.npmjs.com/package/secp256k1) library in Node f ## Usage -With the help of browserify `eccrypto` provides different implementation for Browser and Node.js with the same API. Because WebCryptoAPI defines asynchronous promise-driven API, implementation for Node needs to use promises too. +With the help of browserify `eccrypto` provides different implementations for Browser and Node.js with the same API. Because WebCryptoAPI defines asynchronous promise-driven API, implementation for Node needs to use promises too. ```js var eccrypto = require("eccrypto");