From f438873e510bb36d3aed173e541b4aa77d298e93 Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Sun, 10 Apr 2016 15:15:54 +0800 Subject: [PATCH] fix typo. Signed-off-by: Bo-Yi Wu --- gorush/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gorush/server.go b/gorush/server.go index d370b76..9c0afb3 100644 --- a/gorush/server.go +++ b/gorush/server.go @@ -26,7 +26,7 @@ func pushHandler(c *gin.Context) { var msg string if err := c.BindJSON(&form); err != nil { - msg = "Missing nitifications field." + msg = "Missing notifications field." LogAccess.Debug(msg) AbortWithError(c, http.StatusBadRequest, msg) return