aboutsummaryrefslogtreecommitdiff
path: root/_content/blog/allocation-optimizations.md
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 /_content/blog/allocation-optimizations.md
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>
Diffstat (limited to '_content/blog/allocation-optimizations.md')
-rw-r--r--_content/blog/allocation-optimizations.md2
1 files changed, 1 insertions, 1 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