diff --git a/docs/content/en/_index.md b/docs/content/en/_index.md index 115a0277..4274732a 100644 --- a/docs/content/en/_index.md +++ b/docs/content/en/_index.md @@ -30,5 +30,5 @@ It is named after the bridge outside the Google Cambridge office. ## Ongoing Security Reviews -This project is currently undergoing two independent security reviews by panels of academic and industry experts in the field. Their reports will be made public on this repo when completed, targetted for Aug 1. +This project is currently undergoing two independent security reviews by panels of academic and industry experts in the field. Their reports will be made public on this repo when completed, targeted for Aug 1. diff --git a/lib/algebra/fp_generic.h b/lib/algebra/fp_generic.h index eb9820c9..4c326954 100644 --- a/lib/algebra/fp_generic.h +++ b/lib/algebra/fp_generic.h @@ -288,7 +288,7 @@ class FpGeneric { } // return (X[k] - X[k - i])^{-1}, were X[i] is the - // i-th poly evalaluation point. + // i-th poly evaluation point. Elt newton_denominator(size_t k, size_t i) const { check(k < kNPolyEvaluationPoints, "k < kNPolyEvaluationPoints"); check(i <= k, "i <= k"); diff --git a/lib/circuits/ecdsa/verify_external_test.cc b/lib/circuits/ecdsa/verify_external_test.cc index 8bde5ddd..4509be79 100644 --- a/lib/circuits/ecdsa/verify_external_test.cc +++ b/lib/circuits/ecdsa/verify_external_test.cc @@ -23,7 +23,7 @@ // circuit. The test works by generating a random key, message, and signature // using openssl, and then verifying the signature using our circuit. Next, we // maul the signature by twiddling a single hex digit in the original 5-tuple, -// and ensure that the resulting signature fails. Allthough this only checks +// and ensure that the resulting signature fails. Although this only checks // that single edit distance changes cause failures, it is a basic test. // // $ blaze-bin/ecdsa/verify_external_test \