diff --git a/README.md b/README.md index 7fa94475f..f88705816 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@

-The arkworks ecosystem consist of Rust libraries for designing and working with *zero knowledge succinct non-interactive arguments (zkSNARKs)*. This repository contains efficient implementations of the key algebraic components underlying zkSNARKs: finite fields, elliptic curves, and polynomials. +The arkworks ecosystem consists of Rust libraries for designing and working with *zero knowledge succinct non-interactive arguments (zkSNARKs)*. This repository contains efficient implementations of the key algebraic components underlying zkSNARKs: finite fields, elliptic curves, and polynomials. This library is released under the MIT License and the Apache v2 License (see [License](#license)). diff --git a/ec/README.md b/ec/README.md index ae371177d..3d7055855 100644 --- a/ec/README.md +++ b/ec/README.md @@ -98,7 +98,7 @@ use ark_std::{Zero, UniformRand}; let mut rng = ark_std::test_rng(); // Let's generate an elliptic curve group element in the `CurveGroup` representation let a = G::rand(&mut rng); -// We can convert it the `AffineRepr` representation... +// We can convert it to the `AffineRepr` representation... let a_aff = a.into_affine(); // ... and check that the two representations are equal. assert_eq!(a_aff, a);