From 2cabebd62fef365c342a767c62cc3af076dd3e32 Mon Sep 17 00:00:00 2001 From: quin lynch Date: Sat, 27 Nov 2021 06:42:23 -0400 Subject: [PATCH] fix minor spelling mistake --- docs/guides/interactions_framework/intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/interactions_framework/intro.md b/docs/guides/interactions_framework/intro.md index 7e45419f6..fcb25cf4e 100644 --- a/docs/guides/interactions_framework/intro.md +++ b/docs/guides/interactions_framework/intro.md @@ -347,7 +347,7 @@ Time it takes to create a module instance and execute a `Task.Delay(0)` method u ## Registering Commands to Discord -Application commands loaded to the Interaciton Service can be registered to Discord using a number of different methods. In most cases `RegisterCommandsGloballyAsync()` and `RegisterCommandsToGuildAsync()` are the methods to use. Command registration methods can only be used after the gateway client is ready or the rest client is logged in. +Application commands loaded to the Interaction Service can be registered to Discord using a number of different methods. In most cases `RegisterCommandsGloballyAsync()` and `RegisterCommandsToGuildAsync()` are the methods to use. Command registration methods can only be used after the gateway client is ready or the rest client is logged in. In debug environment, since Global commands can take up to 1 hour to register/update, you should register your commands to a test guild for your changes to take effect immediately. You can use the preprocessor directives to create a simple logic for registering commands: