fix(readme): missing spaces and semicolon

This commit is contained in:
ZavaruKitsu 2022-10-08 18:39:22 +03:00
parent 91002c8271
commit 3f0d109fe2

View File

@ -91,8 +91,7 @@ var bot = BotBaseBuilder
.NoProxy() .NoProxy()
.CustomCommands(a => .CustomCommands(a =>
{ {
a.Start("Starts the bot") a.Start("Starts the bot");
}) })
.NoSerialization() .NoSerialization()
.UseEnglish() .UseEnglish()
@ -206,9 +205,9 @@ var bot = BotBaseBuilder
.CustomCommands(a => .CustomCommands(a =>
{ {
a.Start("Starts the bot"); a.Start("Starts the bot");
a.Add("form1","Opens test form 1" ); a.Add("form1","Opens test form 1");
a.Add("form2", "Opens test form 2" ); a.Add("form2", "Opens test form 2");
a.Add("params", "Returns all send parameters as a message." ); a.Add("params", "Returns all send parameters as a message.");
}) })
.NoSerialization() .NoSerialization()
.UseEnglish() .UseEnglish()
@ -1027,6 +1026,7 @@ Will delete Join and Leave messages automatically in groups.
- [Examples/JoinHiderBot](Examples/JoinHiderBot) - [Examples/JoinHiderBot](Examples/JoinHiderBot)
When you want to update forms async without any user interaction (message/action) before. Use the new InvokeMessageLoop method of BotBase. When you want to update forms async without any user interaction (message/action) before. Use the new InvokeMessageLoop
method of BotBase.
- [Examples/AsyncFormUpdates](Examples/AsyncFormUpdates) - [Examples/AsyncFormUpdates](Examples/AsyncFormUpdates)