Skip to content

Commit

Permalink
Changed helloworld to camel case (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonpolites authored and jmdobry committed Jun 21, 2016
1 parent 1b7b9a4 commit bf849b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/http/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* @param {Object} req Cloud Function request context.
* @param {Object} res Cloud Function response context.
*/
exports.helloworld = function helloworld (req, res) {
exports.helloWorld = function helloWorld (req, res) {
if (req.body.message === undefined) {
// This is an error case, as "message" is required
res.status(400).send('No message defined!');
Expand Down

0 comments on commit bf849b5

Please sign in to comment.