From a7d704cd10d4e5a3ddf45af72616e0d6f1f73e9b Mon Sep 17 00:00:00 2001 From: Dimitris Apostolou Date: Fri, 16 Mar 2018 23:25:36 +0200 Subject: [PATCH] Fix typos --- src/jubjub/edwards.rs | 2 +- src/jubjub/mod.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jubjub/edwards.rs b/src/jubjub/edwards.rs index e73c0ef..e4f5e85 100644 --- a/src/jubjub/edwards.rs +++ b/src/jubjub/edwards.rs @@ -318,7 +318,7 @@ impl Point { // // ... which represents the point ( x / y , (x - 1) / (x + 1) ) // as required by the mapping and preserves the property of - // the auxillary coordinate t. + // the auxiliary coordinate t. // // We need to scale the coordinate, so u and t will have // an extra factor s. diff --git a/src/jubjub/mod.rs b/src/jubjub/mod.rs index ca874c6..a04fe40 100644 --- a/src/jubjub/mod.rs +++ b/src/jubjub/mod.rs @@ -119,7 +119,7 @@ pub trait JubjubParams: Sized { fn fixed_base_chunks_per_generator(&self) -> usize; /// Returns a fixed generator. fn generator(&self, base: FixedGenerators) -> &edwards::Point; - /// Returns a window table [0, 1, ..., 8] for different magntitudes of some + /// Returns a window table [0, 1, ..., 8] for different magnitudes of some /// fixed generator. fn circuit_generators(&self, FixedGenerators) -> &[Vec<(E::Fr, E::Fr)>]; }