Skip to content

Commit

Permalink
Changed helloworld to camel case (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonpolites authored and jmdobry committed Jun 22, 2016
1 parent 6a070cc commit 94913d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/helloworld/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* @param {Object} context Cloud Function context.
* @param {Object} data Request data, provided by a trigger.
*/
exports.helloworld = function helloworld (context, data) {
exports.helloWorld = function helloWorld (context, data) {
console.log('My Cloud Function: ' + data.message);
context.success();
};
Expand Down

0 comments on commit 94913d1

Please sign in to comment.