From a11e74daf7e42fa811378f5f38fb0dfdf6480f3a Mon Sep 17 00:00:00 2001 From: Shenghou Ma Date: Thu, 14 Jun 2012 22:43:15 +0800 Subject: [PATCH] crypto/elliptic: fix doc typo Fixes #3735. R=golang-dev, agl CC=golang-dev https://golang.org/cl/6301083 --- src/pkg/crypto/elliptic/elliptic.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/crypto/elliptic/elliptic.go b/src/pkg/crypto/elliptic/elliptic.go index 30835a90b9..a3990891be 100644 --- a/src/pkg/crypto/elliptic/elliptic.go +++ b/src/pkg/crypto/elliptic/elliptic.go @@ -370,7 +370,7 @@ func P384() Curve { return p384 } -// P256 returns a Curve which implements P-521 (see FIPS 186-3, section D.2.5) +// P521 returns a Curve which implements P-521 (see FIPS 186-3, section D.2.5) func P521() Curve { initonce.Do(initAll) return p521 -- 2.48.1