aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/crypto
diff options
context:
space:
mode:
authorRui Ueyama <ruiu@google.com>2014-04-16 16:57:25 -0700
committerBrad Fitzpatrick <bradfitz@golang.org>2014-04-16 16:57:25 -0700
commitfb91559fbd9fe9efb96e8fa7cbf617964d203516 (patch)
tree5eafe8fec479ff1b84d27364297e5ee83c87e8d6 /src/pkg/crypto
parent58b86e50138adaed962ad12a55ede7fb8b0886d9 (diff)
downloadgo-fb91559fbd9fe9efb96e8fa7cbf617964d203516.tar.xz
all: fix typos
LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/88670043
Diffstat (limited to 'src/pkg/crypto')
-rw-r--r--src/pkg/crypto/cipher/benchmark_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/crypto/cipher/benchmark_test.go b/src/pkg/crypto/cipher/benchmark_test.go
index 0b173a4f3f..027b248510 100644
--- a/src/pkg/crypto/cipher/benchmark_test.go
+++ b/src/pkg/crypto/cipher/benchmark_test.go
@@ -47,7 +47,7 @@ func BenchmarkAESGCMOpen1K(b *testing.B) {
}
// If we test exactly 1K blocks, we would generate exact multiples of
-// the cipher's block size, and and the cipher stream fragments would
+// the cipher's block size, and the cipher stream fragments would
// always be wordsize aligned, whereas non-aligned is a more typical
// use-case.
const almost1K = 1024 - 5