From 883c07e16cc81ca71c89938f73a23df9637a1d0c Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Fri, 8 Jan 2016 15:25:52 -0800 Subject: [PATCH] Correct naming convention. --- externs/hogfather.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/externs/hogfather.js b/externs/hogfather.js index bf07d2c..be85eda 100644 --- a/externs/hogfather.js +++ b/externs/hogfather.js @@ -24,7 +24,7 @@ hogfather.PublicChat = function(cosmo, id) {}; * @param {Cosmopolite} cosmo * @return {Promise} */ -hogfather.PublicChat.Create = function(cosmo) {}; +hogfather.PublicChat.create = function(cosmo) {}; /** @@ -32,12 +32,12 @@ hogfather.PublicChat.Create = function(cosmo) {}; * @param {string} id * @return {Promise} */ -hogfather.PublicChat.Join = function(cosmo, id) {}; +hogfather.PublicChat.join = function(cosmo, id) {}; /** */ -hogfather.PublicChat.prototype.Shutdown = function() {}; +hogfather.PublicChat.prototype.shutdown = function() {}; /**