]> Cypherpunks repositories - gostls13.git/commitdiff
context: fix typo in context_test.go
authorWerner Spiegel <werner.spiegel@gmail.com>
Tue, 24 Jun 2025 23:46:06 +0000 (23:46 +0000)
committerGopher Robot <gobot@golang.org>
Wed, 25 Jun 2025 00:45:57 +0000 (17:45 -0700)
Change-Id: Iee90ce7965eec4074fcb81a34968591877a062d3
GitHub-Last-Rev: f18fd099e490b130affa298bfc40da27ac589b26
GitHub-Pull-Request: golang/go#74360
Reviewed-on: https://go-review.googlesource.com/c/go/+/683675
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
TryBot-Bypass: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Damien Neil <dneil@google.com>
src/context/context_test.go

index 57066c968596f631f63b811f35e84d97b3570ca6..ad47f853dd4b3620df67b12dcc554524546d9a74 100644 (file)
@@ -5,7 +5,7 @@
 package context
 
 // Tests in package context cannot depend directly on package testing due to an import cycle.
-// If your test does requires access to unexported members of the context package,
+// If your test requires access to unexported members of the context package,
 // add your test below as `func XTestFoo(t testingT)` and add a `TestFoo` to x_test.go
 // that calls it. Otherwise, write a regular test in a test.go file in package context_test.