Browse Source
Update events.cs (#2505)
Fixed compiler error caused by missing semicolon
pull/2509/head
Payton
GitHub
2 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
docs/guides/concepts/samples/events.cs
|
@@ -22,7 +22,7 @@ public class Program |
|
|
{ |
|
|
{ |
|
|
Console.WriteLine("Bot is connected!"); |
|
|
Console.WriteLine("Bot is connected!"); |
|
|
return Task.CompletedTask; |
|
|
return Task.CompletedTask; |
|
|
} |
|
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
await Task.Delay(-1); |
|
|
await Task.Delay(-1); |
|
|
} |
|
|
} |
|
|