diff --git a/apps/docs/pages/docs/validation-file-setup.mdx b/apps/docs/pages/docs/validation-file-setup.mdx index b79a3566..0c593535 100644 --- a/apps/docs/pages/docs/validation-file-setup.mdx +++ b/apps/docs/pages/docs/validation-file-setup.mdx @@ -79,7 +79,7 @@ The `handler` object is the current CommandKit instance. You may notice that the code above is returning `true`. This is important as it tells the command handler to not run any other validations and to not run the command. If you do not return `true` (or any truthy value), the command will run as normal. - Interactions (commands in this case) must be handled within 5 seconds, so make sure your + Interactions (commands in this case) must be handled within 3 seconds, so make sure your validations are not using up much of that time. If you're using a database or an external API, it's recommended to implement caching to keep things quick.