Update comment to reflect correct constant. (#1144)

The constant is `DebugMode`, as defined in [mode.go](1e88466d23/mode.go (L16)).
This commit is contained in:
Mike Stipicevic 2017-11-02 14:48:54 +01:00 committed by Bo-Yi Wu
parent 6653d5d588
commit 76ad15ab32
1 changed files with 1 additions and 1 deletions

View File

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