From ee19fd79e4fd47d20835d864ba98cd49cae9e1a7 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Thu, 20 Mar 2014 00:37:35 -0500 Subject: [PATCH] Fix comment typo in addblock. --- util/addblock/import.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/addblock/import.go b/util/addblock/import.go index dac6ea2a..26c55074 100644 --- a/util/addblock/import.go +++ b/util/addblock/import.go @@ -271,8 +271,8 @@ func (bi *blockImporter) Import() chan *importResults { bi.doneChan <- true }() - // Start the status handler and return the result the channel that it - // will send the results on when the import is done. + // Start the status handler and return the result channel that it will + // send the results on when the import is done. resultChan := make(chan *importResults) go bi.statusHandler(resultChan) return resultChan