Browse Source

Updating IsDebugging docs to remove redudent words. (#868)

Regner Blok-Andersen 8 years ago
parent
commit
ee7b912a24
1 changed files with 1 additions and 1 deletions
  1. 1 1
      debug.go

+ 1 - 1
debug.go

@@ -15,7 +15,7 @@ func init() {
 }
 
 // IsDebugging returns true if the framework is running in debug mode.
-// Use SetMode(gin.Release) to switch to disable the debug mode.
+// Use SetMode(gin.Release) to disable debug mode.
 func IsDebugging() bool {
 	return ginMode == debugCode
 }