Skip to content

Commit 7e1045f

Browse files
authored
docs(developing-a-user-installable-app.mdx): correct spelling & improve clarity
- `its` => `it's` - `indiciating` => `indicating` - remove redundant word
1 parent 072296f commit 7e1045f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/tutorials/developing-a-user-installable-app.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ The default install settings of your app determines the default [scopes](/docs/t
103103

104104
###### Update Install Link
105105

106-
Before adding default install settings, we need to select Discord Provided Link for the app's [install link](/docs/resources/application#install-links). Under the **Install Link** section, select `Discord Provided Link` from the dropdown if it isn't already selected (it should be by default). Once its selected, the **Default Install Settings** will appear.
106+
Before adding default install settings, we need to select Discord Provided Link for the app's [install link](/docs/resources/application#install-links). Under the **Install Link** section, select `Discord Provided Link` from the dropdown if it isn't already selected (it should be by default). Once it's selected, the **Default Install Settings** will appear.
107107

108108
###### Adding Default Install Settings
109109

@@ -200,7 +200,7 @@ First, go to your project's folder and run the following to start your app:
200200
npm run start
201201
```
202202

203-
There should be some 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.
203+
There should be some 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.
204204

205205
:::info
206206
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.
@@ -358,7 +358,7 @@ When someone clicks on the button, our app would care about two users when handl
358358
1. User B, who clicked the "Join" button so our app can track who is interested in joining the match
359359
2. User A, who ran the `/game` command so our app can tell them who is interested in joining the match
360360

361-
There are two fields additional fields to know about that can be helpful in this scenario—
361+
There are two additional fields to know about that can be helpful in this scenario—
362362

363363
###### `interaction_metadata`
364364

0 commit comments

Comments
 (0)