From 6ef1b324df46525244ce3bef958065b11a71d559 Mon Sep 17 00:00:00 2001 From: Jason Date: Tue, 21 Jun 2016 13:44:55 -0700 Subject: [PATCH] Changed helloworld to camel case --- functions/http/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/http/index.js b/functions/http/index.js index 9ad5e8edce..dc44c91594 100644 --- a/functions/http/index.js +++ b/functions/http/index.js @@ -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!');