From e62b545ed948de834e1e0d809761b873ef653e3b Mon Sep 17 00:00:00 2001 From: vladislav doster Date: Mon, 8 Sep 2025 14:04:39 -0500 Subject: [PATCH] docs(getting-started.mdx): correct spelling `indiciating` => `indicating` --- docs/quick-start/getting-started.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quick-start/getting-started.mdx b/docs/quick-start/getting-started.mdx index fec6048198..117c82f6e0 100644 --- a/docs/quick-start/getting-started.mdx +++ b/docs/quick-start/getting-started.mdx @@ -248,7 +248,7 @@ First, go to your project's folder and run the following to start your app: npm run start ``` -There should be output indiciating your app is running on port `3000`. Behind the scenes, our app is ready to handle interactions from Discord, which includes verifying security request headers and responding to `PING` requests. We're skipping over a lot of the details in this tutorial, but details about preparing apps for interactions is in the [Interactions Overview](/docs/interactions/overview#preparing-for-interactions) documentation. +There should be output indicating your app is running on port `3000`. Behind the scenes, our app is ready to handle interactions from Discord, which includes verifying security request headers and responding to `PING` requests. We're skipping over a lot of the details in this tutorial, but details about preparing apps for interactions is in the [Interactions Overview](/docs/interactions/overview#preparing-for-interactions) documentation. :::info By default, the server will listen to requests sent to port 3000, but if you want to change the port, you can specify a `PORT` variable in your `.env` file.