aboutsummaryrefslogtreecommitdiff
path: root/doc/asm.html
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2016-01-06 14:58:54 -0800
committerIan Lance Taylor <iant@golang.org>2016-01-06 23:17:25 +0000
commitbd7086996c4daef1dab56d18669625723662c555 (patch)
treed1609ca14b183455b1ed634ed271bcfb76d1d280 /doc/asm.html
parent70c9a8187a2732f969aaaa78e0e6f139d04ef3eb (diff)
downloadgo-bd7086996c4daef1dab56d18669625723662c555.tar.gz
go-bd7086996c4daef1dab56d18669625723662c555.zip
doc: fix incorrect example in asm.html
Fixes #13845. Change-Id: Ie83179b2d20c47a0296645d9e2fdc43271be495a Reviewed-on: https://go-review.googlesource.com/18307 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'doc/asm.html')
-rw-r--r--doc/asm.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/asm.html b/doc/asm.html
index c992e14ade..3459033f82 100644
--- a/doc/asm.html
+++ b/doc/asm.html
@@ -176,7 +176,7 @@ This form is used to name global functions and data.
Adding <code>&lt;&gt;</code> to the name, as in <span style="white-space: nowrap"><code>foo&lt;&gt;(SB)</code></span>, makes the name
visible only in the current source file, like a top-level <code>static</code> declaration in a C file.
Adding an offset to the name refers to that offset from the symbol's address, so
-<code>a+4(SB)</code> is four bytes past the start of <code>foo</code>.
+<code>foo+4(SB)</code> is four bytes past the start of <code>foo</code>.
</p>
<p>