diff --git a/CHANGELOG.md b/CHANGELOG.md index 50700990dc..e449990452 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,7 +36,7 @@ - resolve conflict around kzg ### Perf -- remove uneeded bucket init in affine coordinates fixes [#529](https://github.com/ConsenSys/gnark-crypto/issues/529) ([#530](https://github.com/ConsenSys/gnark-crypto/issues/530)) +- remove unneeded bucket init in affine coordinates fixes [#529](https://github.com/ConsenSys/gnark-crypto/issues/529) ([#530](https://github.com/ConsenSys/gnark-crypto/issues/530)) ### Refactor - variable name diff --git a/accumulator/merkletree/tree.go b/accumulator/merkletree/tree.go index 136af1e161..9d70c77f19 100644 --- a/accumulator/merkletree/tree.go +++ b/accumulator/merkletree/tree.go @@ -158,7 +158,7 @@ func (t *Tree) Prove() (merkleRoot []byte, proofSet [][]byte, proofIndex uint64, // containing the proof index as left siblings. // Start at the smallest subtree and combine it with larger subtrees until - // it would be combining with the subtree that contains the proof index. We + // it would be combined with the subtree that contains the proof index. We // can recognize the subtree containing the proof index because the height // of that subtree will be one less than the current length of the proof // set. diff --git a/ecc/bls12-377/multiexp_affine.go b/ecc/bls12-377/multiexp_affine.go index 10f68ca4de..74001824c1 100644 --- a/ecc/bls12-377/multiexp_affine.go +++ b/ecc/bls12-377/multiexp_affine.go @@ -72,7 +72,7 @@ func processChunkG1BatchAffine[BJE ibg1JacExtended, B ibG1Affine, BS bitSet, TP cptAdd int // count the number of bucket + point added to current batch R TPP // bucket references P TP // points to be added to R (buckets); it is beneficial to store them on the stack (ie copy) - queue TQ // queue of points that conflict the current batch + queue TQ // queue of points that conflict with the current batch qID int // current position in queue )