Merge pull request #56 from rex4539/fix-typos

Fix typos
This commit is contained in:
ebfull 2018-03-16 15:44:02 -06:00 committed by GitHub
commit c09292672a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -318,7 +318,7 @@ impl<E: JubjubEngine, Subgroup> Point<E, Subgroup> {
//
// ... 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.

View File

@ -119,7 +119,7 @@ pub trait JubjubParams<E: JubjubEngine>: Sized {
fn fixed_base_chunks_per_generator(&self) -> usize;
/// Returns a fixed generator.
fn generator(&self, base: FixedGenerators) -> &edwards::Point<E, PrimeOrder>;
/// 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)>];
}