diff options
| author | Robert Griesemer <gri@golang.org> | 2012-03-13 17:29:07 -0700 |
|---|---|---|
| committer | Robert Griesemer <gri@golang.org> | 2012-03-13 17:29:07 -0700 |
| commit | d724631a532017535133546776d444e698c67336 (patch) | |
| tree | d7af6aad746e2164218473b035a52caeabff810a /src/pkg/syscall/syscall_linux.go | |
| parent | fef92cbbac97022c094f4ff5bfb47b12852e076b (diff) | |
| download | go-d724631a532017535133546776d444e698c67336.tar.xz | |
all: various typos
R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/5820045
Diffstat (limited to 'src/pkg/syscall/syscall_linux.go')
| -rw-r--r-- | src/pkg/syscall/syscall_linux.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/syscall/syscall_linux.go b/src/pkg/syscall/syscall_linux.go index 59e167ce55..89fb681921 100644 --- a/src/pkg/syscall/syscall_linux.go +++ b/src/pkg/syscall/syscall_linux.go @@ -627,7 +627,7 @@ func ptracePeek(req int, pid int, addr uintptr, out []byte) (count int, err erro // Remainder. for len(out) > 0 { - // We use an internal buffer to gaurantee alignment. + // We use an internal buffer to guarantee alignment. // It's not documented if this is necessary, but we're paranoid. err = ptrace(req, pid, addr+uintptr(n), uintptr(unsafe.Pointer(&buf[0]))) if err != nil { |
