aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Freeman <mark@golang.org>2026-03-25 18:57:20 -0400
committerGopher Robot <gobot@golang.org>2026-03-25 18:26:02 -0700
commit985eb3ee12e5e70cebab2aac4ad390c2921c0f82 (patch)
treedee1e90aedfd23a8c2bb7cda0ff95ae2c718a9b8
parentffce12f94f43948bb525fc20068c675227d725c0 (diff)
downloadgo-x-website-985eb3ee12e5e70cebab2aac4ad390c2921c0f82.tar.xz
_content/blog: fix small typo in latest post
Change-Id: Ifb2127099a6afca86ca8befa813e2a5ef7b878c4 Reviewed-on: https://go-review.googlesource.com/c/website/+/759400 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Cherry Mui <cherryyz@google.com> Auto-Submit: Mark Freeman <markfreeman@google.com>
-rw-r--r--_content/blog/type-construction-and-cycle-detection.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/_content/blog/type-construction-and-cycle-detection.md b/_content/blog/type-construction-and-cycle-detection.md
index 581036b7..1095fd31 100644
--- a/_content/blog/type-construction-and-cycle-detection.md
+++ b/_content/blog/type-construction-and-cycle-detection.md
@@ -256,7 +256,7 @@ conveys no (underlying) type information at all.
#### Where to do it
Up to now we’ve focused on `unsafe.Sizeof` directly operating on potentially
-incomplete values. In `type T [unsafe.Sizeof(T{})]`, the call to `unsafe.Sizeof`
+incomplete values. In `type T [unsafe.Sizeof(T{})]int`, the call to `unsafe.Sizeof`
is just the "root" of the array length expression. We can readily imagine the
incomplete value `T{}` as an operand in some other value expression.