diff options
| author | cuishuang <imcusg@gmail.com> | 2025-09-29 11:51:24 +0800 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2025-10-08 13:58:26 -0700 |
| commit | 1faea2975ced2153e5086c1ee135f983db10150a (patch) | |
| tree | 0055df92d038103a10fb9e6d6a309cc5d24ae721 /nacl/box/box_test.go | |
| parent | 627cb894b6b2021e34c4ad4af4c0a963127491e4 (diff) | |
| download | go-x-crypto-1faea2975ced2153e5086c1ee135f983db10150a.tar.xz | |
all: fix some typos in comment
Change-Id: Ia209f0a6d9b19d14e655c65d1287a1416b48c487
Reviewed-on: https://go-review.googlesource.com/c/crypto/+/707535
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Michael Pratt <mpratt@google.com>
Auto-Submit: Sean Liao <sean@liao.dev>
Reviewed-by: Nicola Murino <nicola.murino@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Sean Liao <sean@liao.dev>
Diffstat (limited to 'nacl/box/box_test.go')
| -rw-r--r-- | nacl/box/box_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nacl/box/box_test.go b/nacl/box/box_test.go index cce1f3b..4049257 100644 --- a/nacl/box/box_test.go +++ b/nacl/box/box_test.go @@ -114,7 +114,7 @@ func TestSealOpenAnonymous(t *testing.T) { t.Fatal("expected out to be unchanged") } if !bytes.HasPrefix(box, orig) { - t.Fatal("expected out to be coppied to returned slice") + t.Fatal("expected out to be copied to returned slice") } _, ok = OpenAnonymous(nil, box[len(out):], publicKey, privateKey) if !ok { |
