Skip to content

Commit

Permalink
chore: fix some function names in comment (#1304)
Browse files Browse the repository at this point in the history
  • Loading branch information
wangjingcun authored Nov 15, 2024
1 parent 525615c commit f5b9fd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion std/math/polynomial/polynomial.go
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ func (p *Polynomial[FR]) InterpolateLDE(at *emulated.Element[FR], values []*emul
return res
}

// EvalEquals returns the evaluation
// EvalEqual returns the evaluation
//
// eq(x, y) = \prod (1-x)*(1-y) + x*y,
//
Expand Down
2 changes: 1 addition & 1 deletion test/assert.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func (assert *Assert) ProverSucceeded(circuit frontend.Circuit, validAssignment
assert.CheckCircuit(circuit, newOpts...)
}

// ProverSucceeded is deprecated use [Assert.CheckCircuit] instead
// ProverFailed is deprecated use [Assert.CheckCircuit] instead
func (assert *Assert) ProverFailed(circuit frontend.Circuit, invalidAssignment frontend.Circuit, opts ...TestingOption) {
// copy the options
newOpts := make([]TestingOption, len(opts), len(opts)+2)
Expand Down

0 comments on commit f5b9fd6

Please sign in to comment.