From 8e8f31d3fe71c5e36b3a5867a0223f781be62cf6 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Thu, 9 Apr 2015 22:34:25 +0200 Subject: [PATCH] debug: fix typos --- debug/debug.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debug/debug.go b/debug/debug.go index 5ade4878a..eb6fb01d4 100644 --- a/debug/debug.go +++ b/debug/debug.go @@ -148,7 +148,7 @@ func Log(tag string, f string, args ...interface{}) { } } -// Break stopts the program if the debug tag is active and the string in tag is +// Break stops the program if the debug tag is active and the string in tag is // contained in the DEBUG_BREAK environment variable. func Break(tag string) { // check if breaking is enabled @@ -169,7 +169,7 @@ func Break(tag string) { } } -// BreakIf stopts the program if the debug tag is active and the string in tag +// BreakIf stops the program if the debug tag is active and the string in tag // is contained in the DEBUG_BREAK environment variable and the return value of // fn is true. func BreakIf(tag string, fn func() bool) {