Skip to content

Commit 532f4ec

Browse files
fgarofalo56Kaiqb
authored andcommitted
FIxed refrance links to code (#188)
Code was not showing on Docs page as reference links where point to blocks that did not exist. Example: [!code-csharpAccepting input] was looking for // <Accepting input> but in the linked code it had // <Accepting>. Update the code block reference names
1 parent 4b01573 commit 532f4ec

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/includes/code/dotnet-input-hints.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,31 +22,31 @@ public async Task OnTurn(ITurnContext context)
2222
if (context.Activity.Type == ActivityTypes.Message)
2323
{
2424
{
25-
// <Accepting>
25+
// <Accepting input>
2626
var reply = MessageFactory.Text(
2727
"This is the text that will be displayed.",
2828
"This is the text that will be spoken.",
2929
InputHints.AcceptingInput);
3030
await context.SendActivity(reply).ConfigureAwait(false);
31-
// </Accepting>
31+
// </Accepting input>
3232
}
3333
{
34-
// <Expecting>
34+
// <Expecting input>
3535
var reply = MessageFactory.Text(
3636
"This is the text that will be displayed.",
3737
"This is the text that will be spoken.",
3838
InputHints.ExpectingInput);
3939
await context.SendActivity(reply).ConfigureAwait(false);
40-
// </Expecting>
40+
// </Expecting input>
4141
}
4242
{
43-
// <Ignoring>
43+
// <Ignoring input>
4444
var reply = MessageFactory.Text(
4545
"This is the text that will be displayed.",
4646
"This is the text that will be spoken.",
4747
InputHints.IgnoringInput);
4848
await context.SendActivity(reply).ConfigureAwait(false);
49-
// </Ignoring>
49+
// </Ignoring input>
5050
}
5151
}
5252
}

0 commit comments

Comments
 (0)