diff --git a/Node/core-basicMultiDialog/bot.js b/Node/core-basicMultiDialog/bot.js index 299f26b8d3..25f33e4fe8 100644 --- a/Node/core-basicMultiDialog/bot.js +++ b/Node/core-basicMultiDialog/bot.js @@ -130,10 +130,10 @@ bot.dialog('getAge', [ { name: session.dialogData.name, isReprompt: true }); } } else { - // Valid city received + // Valid age received // Return control to calling dialog - // Pass the city in the response property of results + // Pass the age in the response property of results session.endDialogWithResult({ response: age }); } } -]); \ No newline at end of file +]);