diff --git a/app.js b/app.js index 85a8244..92d3d6d 100644 --- a/app.js +++ b/app.js @@ -28,7 +28,7 @@ app.post('/submit',function(req,res){ if(body.success !== undefined && !body.success) { return res.json({"responseCode" : 1,"responseDesc" : "Failed captcha verification"}); } - res.json({"responseCode" : 0,"responseDesc" : "Sucess"}); + res.json({"responseCode" : 0,"responseDesc" : "Success"}); }); });