summaryrefslogtreecommitdiff
path: root/src/pkg/crypto/elliptic/elliptic.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/crypto/elliptic/elliptic.go')
-rw-r--r--src/pkg/crypto/elliptic/elliptic.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/crypto/elliptic/elliptic.go b/src/pkg/crypto/elliptic/elliptic.go
index 335c9645d..41835f1a9 100644
--- a/src/pkg/crypto/elliptic/elliptic.go
+++ b/src/pkg/crypto/elliptic/elliptic.go
@@ -284,7 +284,7 @@ func (curve *Curve) Marshal(x, y *big.Int) []byte {
return ret
}
-// Unmarshal converts a point, serialised by Marshal, into an x, y pair. On
+// Unmarshal converts a point, serialized by Marshal, into an x, y pair. On
// error, x = nil.
func (curve *Curve) Unmarshal(data []byte) (x, y *big.Int) {
byteLen := (curve.BitSize + 7) >> 3