From f1ae3ea1a02f049a3a0bdabab961c20c6effc4a2 Mon Sep 17 00:00:00 2001 From: HeadMader <87611498+HeadMader@users.noreply.github.com> Date: Sun, 26 Nov 2023 19:55:59 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}");