Skip to content
This repository has been archived by the owner on Sep 25, 2023. It is now read-only.

Commit

Permalink
Merge pull request #559 from artem-frolov/patch-1
Browse files Browse the repository at this point in the history
Fix typos in the entryHandler.js of the template
  • Loading branch information
py8765 committed Jul 14, 2014
2 parents 74513a7 + 4db833f commit 6a4e0a6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var Handler = function(app) {
*
* @param {Object} msg request message
* @param {Object} session current session object
* @param {Function} next next stemp callback
* @param {Function} next next step callback
* @return {Void}
*/
Handler.prototype.entry = function(msg, session, next) {
Expand All @@ -23,7 +23,7 @@ Handler.prototype.entry = function(msg, session, next) {
*
* @param {Object} msg request message
* @param {Object} session current session object
* @param {Function} next next stemp callback
* @param {Function} next next step callback
* @return {Void}
*/
Handler.prototype.publish = function(msg, session, next) {
Expand All @@ -39,7 +39,7 @@ Handler.prototype.publish = function(msg, session, next) {
*
* @param {Object} msg request message
* @param {Object} session current session object
* @param {Function} next next stemp callback
* @param {Function} next next step callback
* @return {Void}
*/
Handler.prototype.subscribe = function(msg, session, next) {
Expand All @@ -48,4 +48,4 @@ Handler.prototype.subscribe = function(msg, session, next) {
payload: JSON.stringify({code: 200, msg: 'subscribe message is ok.'})
};
next(null, result);
};
};

0 comments on commit 6a4e0a6

Please sign in to comment.