diff options
| author | Josh Bleecher Snyder <josharian@gmail.com> | 2019-03-28 16:15:14 -0700 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@golang.org> | 2019-04-16 20:27:15 +0000 |
| commit | 5781df421e721088f3ff6229f0e8d4e4c04765b8 (patch) | |
| tree | 4f726e5bca753566c70f9c8d4957697996a9dcf7 /src/os/timeout_test.go | |
| parent | 34b1f210462409f8c05d927a80d973b5692c1d26 (diff) | |
| download | go-5781df421e721088f3ff6229f0e8d4e4c04765b8.tar.xz | |
all: s/cancelation/cancellation/
Though there is variation in the spelling of canceled,
cancellation is always spelled with a double l.
Reference: https://www.grammarly.com/blog/canceled-vs-cancelled/
Change-Id: I240f1a297776c8e27e74f3eca566d2bc4c856f2f
Reviewed-on: https://go-review.googlesource.com/c/go/+/170060
Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/os/timeout_test.go')
| -rw-r--r-- | src/os/timeout_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os/timeout_test.go b/src/os/timeout_test.go index 4720738d24..5d7ea7ea29 100644 --- a/src/os/timeout_test.go +++ b/src/os/timeout_test.go @@ -514,7 +514,7 @@ func TestReadWriteDeadlineRace(t *testing.T) { } // TestRacyRead tests that it is safe to mutate the input Read buffer -// immediately after cancelation has occurred. +// immediately after cancellation has occurred. func TestRacyRead(t *testing.T) { t.Parallel() @@ -553,7 +553,7 @@ func TestRacyRead(t *testing.T) { } // TestRacyWrite tests that it is safe to mutate the input Write buffer -// immediately after cancelation has occurred. +// immediately after cancellation has occurred. func TestRacyWrite(t *testing.T) { t.Parallel() |
