diff --git a/README.md b/README.md index 24226ae..66574f9 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ botBuilder.AddRoute("/start", UpdateType.Message, (pipeline) => { await Bot.SendTextMessageAsync(update.Message.Chat.Id, "Write Your Name"); }); - pipeline.Use(async (update) => + pipeline.Use(async (update) => { string name = update?.Message?.Text; await Bot.SendTextMessageAsync(update.Message.Chat.Id, $"Hello {name}");