From 1efc4940cd4b4bc7d82c7c04191d562b269b01ca Mon Sep 17 00:00:00 2001 From: Derek Parker Date: Wed, 24 Feb 2016 17:50:11 -0800 Subject: [PATCH] service/debugger: Fix typo --- service/debugger/debugger.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/service/debugger/debugger.go b/service/debugger/debugger.go index 866edd2f..3b2da075 100644 --- a/service/debugger/debugger.go +++ b/service/debugger/debugger.go @@ -25,9 +25,9 @@ import ( // functionality needed by clients, but not needed in // lower lever packages such as proc. type Debugger struct { - config *Config + config *Config processMutex sync.Mutex - process *proc.Process + process *proc.Process } // Config provides the configuration to start a Debugger. @@ -406,7 +406,7 @@ func (d *Debugger) Command(command *api.DebuggerCommand) (*api.DebuggerState, er log.Printf("switching to goroutine %d", command.GoroutineID) err = d.process.SwitchGoroutine(command.GoroutineID) case api.Halt: - // RequestManualStop alread called + // RequestManualStop already called } if err != nil { return nil, err -- GitLab