Add missing semicolon to appease JSHint

This commit is contained in:
Andrew Stewart 2014-06-10 18:45:08 -07:00
parent f797cf4c48
commit 682bfc6536
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ router.get("/robots/:robot/devices/:device/events/:event", load, function(req, r
});
var writeData = function(data) {
res.write("data: " + JSON.stringify(data) + "\n\n")
res.write("data: " + JSON.stringify(data) + "\n\n");
};
req.device.on(event, writeData);