aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleksandr Redko <oleksandr.red+github@gmail.com>2026-02-27 20:26:18 +0200
committerKeith Randall <khr@google.com>2026-02-27 14:34:14 -0800
commit0a6e7586b8bdf0f38d9de3a08dd3c7d3d029577a (patch)
tree21418473e41d404a421992cd813a7d30fad56fb7
parent330ff589682cfa9aec338875947322b7f426bbc5 (diff)
downloadgo-x-website-0a6e7586b8bdf0f38d9de3a08dd3c7d3d029577a.tar.xz
_content/blog: fix duplicated words
Change-Id: Ida569369fc5ac7c1f751cda86e50d3308ba34855 Reviewed-on: https://go-review.googlesource.com/c/website/+/750000 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Cherry Mui <cherryyz@google.com>
-rw-r--r--_content/blog/allocation-optimizations.md2
-rw-r--r--_content/blog/testing-time.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/_content/blog/allocation-optimizations.md b/_content/blog/allocation-optimizations.md
index 507541da..d69e4ced 100644
--- a/_content/blog/allocation-optimizations.md
+++ b/_content/blog/allocation-optimizations.md
@@ -287,7 +287,7 @@ operated on a stack-backed slice up to the return point.
We do pay the cost for a copy, but that cost is almost completely
offset by the copies in the startup phase that we no longer have to
-do. (In fact, the the new scheme at worst has to copy one more element
+do. (In fact, the new scheme at worst has to copy one more element
than the old scheme.)
## Wrapping up
diff --git a/_content/blog/testing-time.md b/_content/blog/testing-time.md
index 387f925b..6b18c956 100644
--- a/_content/blog/testing-time.md
+++ b/_content/blog/testing-time.md
@@ -360,7 +360,7 @@ So we asked ourselves what we can do to make this better.
As we saw earlier, the two fundamental features required to write testable concurrent code are
fake time and a way to wait for quiescence.
-We need a better way to to wait for quiescence.
+We need a better way to wait for quiescence.
We should be able to ask the runtime when background goroutines have finished their work.
We also want to be able to limit the scope of this query to a single test,
so that unrelated tests do not interfere with each other.