Fix typos in comments and documentation (#2608)

* Fix typos in comments and documentations

* Fixes more typo
This commit is contained in:
Ge
2023-02-27 03:49:16 +08:00
committed by GitHub
parent 709364aaef
commit ee617d8ef3
56 changed files with 137 additions and 138 deletions

View File

@@ -90,7 +90,7 @@ namespace BasicBot
if (message.Content == "!ping")
{
// Create a new componentbuilder, in which dropdowns & buttons can be created.
// Create a new ComponentBuilder, in which dropdowns & buttons can be created.
var cb = new ComponentBuilder()
.WithButton("Click me!", "unique-id", ButtonStyle.Primary);

View File

@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace InteractionFramework.Modules
{
// Interation modules must be public and inherit from an IInterationModuleBase
// Interaction modules must be public and inherit from an IInteractionModuleBase
public class ExampleModule : InteractionModuleBase<SocketInteractionContext>
{
// Dependencies can be accessed through Property injection, public properties with public setters will be set by the service provider