aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/debug
diff options
context:
space:
mode:
authorRobert Hencke <robert.hencke@gmail.com>2014-04-29 12:44:40 -0400
committerBrad Fitzpatrick <bradfitz@golang.org>2014-04-29 12:44:40 -0400
commitf999e14f025b69516dd3e126d04dd309adb2fce0 (patch)
treeb852e95182baebf43106aab31dff9591d445bed9 /src/pkg/debug
parentfee51f45ab37c77ad8b7967b091ddf19d4e259a3 (diff)
downloadgo-f999e14f025b69516dd3e126d04dd309adb2fce0.tar.xz
all: spelling tweaks, A-G
LGTM=ruiu, bradfitz R=golang-codereviews, bradfitz, ruiu CC=golang-codereviews https://golang.org/cl/91840044
Diffstat (limited to 'src/pkg/debug')
-rw-r--r--src/pkg/debug/elf/elf.go2
-rw-r--r--src/pkg/debug/goobj/read.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/debug/elf/elf.go b/src/pkg/debug/elf/elf.go
index 03e42b0346..d622dae2af 100644
--- a/src/pkg/debug/elf/elf.go
+++ b/src/pkg/debug/elf/elf.go
@@ -517,7 +517,7 @@ const (
DT_INIT_ARRAY DynTag = 25 /* Address of the array of pointers to initialization functions */
DT_FINI_ARRAY DynTag = 26 /* Address of the array of pointers to termination functions */
DT_INIT_ARRAYSZ DynTag = 27 /* Size in bytes of the array of initialization functions. */
- DT_FINI_ARRAYSZ DynTag = 28 /* Size in bytes of the array of terminationfunctions. */
+ DT_FINI_ARRAYSZ DynTag = 28 /* Size in bytes of the array of termination functions. */
DT_RUNPATH DynTag = 29 /* String table offset of a null-terminated library search path string. */
DT_FLAGS DynTag = 30 /* Object specific flag values. */
DT_ENCODING DynTag = 32 /* Values greater than or equal to DT_ENCODING
diff --git a/src/pkg/debug/goobj/read.go b/src/pkg/debug/goobj/read.go
index 8af7d68d8b..c95fe1e47f 100644
--- a/src/pkg/debug/goobj/read.go
+++ b/src/pkg/debug/goobj/read.go
@@ -135,7 +135,7 @@ type SymID struct {
// Version is zero for symbols with global visibility.
// Symbols with only file visibility (such as file-level static
- // declarations in C) have a non-zero version distinguising
+ // declarations in C) have a non-zero version distinguishing
// a symbol in one file from a symbol of the same name
// in another file
Version int