Skip to content
Snippets Groups Projects
Commit d72bf9f2 authored by Vytor Calixto's avatar Vytor Calixto :space_invader:
Browse files

Fix typo in error message

parent 3d108944
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -212,7 +212,7 @@ classroomCountApp.post('/', rqf.parse(), (req, res, next) => {
if(classSize == null || integralTime == null) {
res.statusCode = 400;
return res.json({err: {message: "There was an error processing class_size or integral_time. Check your JSON sintax and be sure you're sending both paramenters."}});
return res.json({err: {message: "There was an error processing class_size or integral_time. Check your JSON sintax and be sure you're sending both parameters."}});
}
req.classroom = req.result;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment