We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a19c0e commit e30c0afCopy full SHA for e30c0af
crypto/bls12381/fp2.go
@@ -207,7 +207,7 @@ func (e *fp2) exp(c, a *fe2, s *big.Int) {
207
c.set(z)
208
}
209
210
-func (e *fp2) frobeniousMap(c, a *fe2, power uint) {
+func (e *fp2) frobeniusMap(c, a *fe2, power uint) {
211
c[0].set(&a[0])
212
if power%2 == 1 {
213
neg(&c[1], &a[1])
@@ -216,7 +216,7 @@ func (e *fp2) frobeniousMap(c, a *fe2, power uint) {
216
c[1].set(&a[1])
217
218
219
-func (e *fp2) frobeniousMapAssign(a *fe2, power uint) {
+func (e *fp2) frobeniusMapAssign(a *fe2, power uint) {
220
221
neg(&a[1], &a[1])
222
return
crypto/bls12381/fp6.go
@@ -314,9 +314,9 @@ func (e *fp6) inverse(c, a *fe6) {
314
315
func (e *fp6) frobeniusMap(c, a *fe6, power uint) {
316
fp2 := e.fp2
317
- fp2.frobeniousMap(&c[0], &a[0], power)
318
- fp2.frobeniousMap(&c[1], &a[1], power)
319
- fp2.frobeniousMap(&c[2], &a[2], power)
+ fp2.frobeniusMap(&c[0], &a[0], power)
+ fp2.frobeniusMap(&c[1], &a[1], power)
+ fp2.frobeniusMap(&c[2], &a[2], power)
320
switch power % 6 {
321
case 0:
322
@@ -332,9 +332,9 @@ func (e *fp6) frobeniusMap(c, a *fe6, power uint) {
332
333
func (e *fp6) frobeniusMapAssign(a *fe6, power uint) {
334
335
- fp2.frobeniousMapAssign(&a[0], power)
336
- fp2.frobeniousMapAssign(&a[1], power)
337
- fp2.frobeniousMapAssign(&a[2], power)
+ fp2.frobeniusMapAssign(&a[0], power)
+ fp2.frobeniusMapAssign(&a[1], power)
+ fp2.frobeniusMapAssign(&a[2], power)
338
t := e.t
339
340
internal/build/azure.go
@@ -26,7 +26,7 @@ import (
26
)
27
28
// AzureBlobstoreConfig is an authentication and configuration struct containing
29
-// the data needed by the Azure SDK to interact with a speicifc container in the
+// the data needed by the Azure SDK to interact with a specific container in the
30
// blobstore.
31
type AzureBlobstoreConfig struct {
32
Account string // Account name to authorize API requests with
internal/ethapi/api.go
@@ -990,7 +990,7 @@ func DoEstimateGas(ctx context.Context, b Backend, args CallArgs, blockNrOrHash
990
991
// If the error is not nil(consensus error), it means the provided message
992
// call or transaction will never be accepted no matter how much gas it is
993
- // assigened. Return the error directly, don't struggle any more.
+ // assigned. Return the error directly, don't struggle any more.
994
if err != nil {
995
return 0, err
996
0 commit comments