Skip to content

Commit e450610

Browse files
atetubougopherbot
authored andcommitted
_content/doc/gc-guide: fix typo
Change-Id: Id300424ca0aa56f7019788db56d88190ca9b81a5 GitHub-Last-Rev: c9e3fa6 GitHub-Pull-Request: #332 Reviewed-on: https://go-review.googlesource.com/c/website/+/711600 Reviewed-by: Michael Pratt <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Auto-Submit: Dmitri Shuralyov <[email protected]>
1 parent d3e81a2 commit e450610

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

_content/blog/pgo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ Showing nodes accounting for -3.72s, 3.13% of 118.73s total
350350
```
351351

352352
So `runtime.scanobject` is ultimately coming from `runtime.gcBgMarkWorker`.
353-
The [Go GC Guide](/doc/gc-guide#Identiying_costs) tells us that `runtime.gcBgMarkWorker` is part of the garbage collector, so `runtime.scanobject` savings must be GC savings.
353+
The [Go GC Guide](/doc/gc-guide#Identifying_costs) tells us that `runtime.gcBgMarkWorker` is part of the garbage collector, so `runtime.scanobject` savings must be GC savings.
354354
What about `nextFreeFast` and other `runtime` functions?
355355

356356
```

_content/doc/gc-guide.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1527,7 +1527,7 @@ <h2 id="A_note_about_virtual_memory">A note about virtual memory</h2>
15271527

15281528
<h2 id="Optimization_guide">Optimization guide</h2>
15291529

1530-
<h3 id="Identiying_costs">Identifying costs</h3>
1530+
<h3 id="Identifying_costs">Identifying costs</h3>
15311531

15321532
<p>
15331533
Before trying to optimize how your Go application interacts with the GC, it's

0 commit comments

Comments
 (0)