diff options
| author | Ian Lance Taylor <iant@golang.org> | 2025-11-28 14:34:06 -0800 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2025-12-01 09:41:50 -0800 |
| commit | 42e03bbd27a31e389ca37863b0bb90692086f408 (patch) | |
| tree | 21bcd7e491b929f41783ed97f10a8848c9d03415 /src/debug | |
| parent | 18015e8c369df15ca73fc00d6db8efc0590236ba (diff) | |
| download | go-42e03bbd27a31e389ca37863b0bb90692086f408.tar.xz | |
debug/elf: correct case of DWARF in comment
Change-Id: I5b80b0e3e50fafdb732c732cdae6e2756d919d20
Reviewed-on: https://go-review.googlesource.com/c/go/+/725360
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Mark Freeman <markfreeman@google.com>
Auto-Submit: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Sean Liao <sean@liao.dev>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Diffstat (limited to 'src/debug')
| -rw-r--r-- | src/debug/elf/file.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/elf/file.go b/src/debug/elf/file.go index 1fc10a5686..80df13ef8b 100644 --- a/src/debug/elf/file.go +++ b/src/debug/elf/file.go @@ -1300,7 +1300,7 @@ func (f *File) DWARF() (*dwarf.Data, error) { return b, nil } - // There are many DWARf sections, but these are the ones + // There are many DWARF sections, but these are the ones // the debug/dwarf package started with. var dat = map[string][]byte{"abbrev": nil, "info": nil, "str": nil, "line": nil, "ranges": nil} for i, s := range f.Sections { |
