Correct naming convention.

This commit is contained in:
Ian Gulliver
2016-01-08 15:25:52 -08:00
parent f40f4292a7
commit 883c07e16c

View File

@@ -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() {};
/**