From 32a0c752ebbdb779ac70ae263ee5efadd631ca41 Mon Sep 17 00:00:00 2001 From: aarzilli Date: Sun, 10 Jan 2016 12:47:54 +0100 Subject: [PATCH] proc: fix 2 typos --- proc/arch.go | 2 +- proc/variables.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/proc/arch.go b/proc/arch.go index 2cc4f087..0194b2fd 100644 --- a/proc/arch.go +++ b/proc/arch.go @@ -12,7 +12,7 @@ type Arch interface { GStructOffset() uint64 } -// AMD64 represents hte AMD64 CPU architecture. +// AMD64 represents the AMD64 CPU architecture. type AMD64 struct { ptrSize int breakInstruction []byte diff --git a/proc/variables.go b/proc/variables.go index 19e8ba17..1515095d 100644 --- a/proc/variables.go +++ b/proc/variables.go @@ -300,7 +300,7 @@ func (scope *EvalScope) PtrSize() int { return scope.Thread.dbp.arch.PtrSize() } -// ChanRecvBlocked eturns whether the goroutine is blocked on +// ChanRecvBlocked returns whether the goroutine is blocked on // a channel read operation. func (g *G) ChanRecvBlocked() bool { return g.WaitReason == chanRecv