Skip to content

Commit 0b38c5d

Browse files
authored
docs: updated applications URL (#4699)
1 parent f451be0 commit 0b38c5d

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

docs/examples/attachments.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ client.on('message', message => {
3333
}
3434
});
3535

36-
// Log our bot in using the token from https://discord.com/developers/applications/me
36+
// Log our bot in using the token from https://discord.com/developers/applications
3737
client.login('your token here');
3838
```
3939

@@ -68,7 +68,7 @@ client.on('message', message => {
6868
}
6969
});
7070

71-
// Log our bot in using the token from https://discord.com/developers/applications/me
71+
// Log our bot in using the token from https://discord.com/developers/applications
7272
client.login('your token here');
7373
```
7474

@@ -105,7 +105,7 @@ client.on('message', message => {
105105
}
106106
});
107107

108-
// Log our bot in using the token from https://discord.com/developers/applications/me
108+
// Log our bot in using the token from https://discord.com/developers/applications
109109
client.login('your token here');
110110
```
111111

@@ -154,7 +154,7 @@ client.on('message', message => {
154154
}
155155
});
156156

157-
// Log our bot in using the token from https://discord.com/developers/applications/me
157+
// Log our bot in using the token from https://discord.com/developers/applications
158158
client.login('your token here');
159159
```
160160

docs/examples/avatars.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ client.on('message', message => {
2727
}
2828
});
2929

30-
// Log our bot in using the token from https://discord.com/developers/applications/me
30+
// Log our bot in using the token from https://discord.com/developers/applications
3131
client.login('your token here');

docs/examples/embed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ client.on('message', message => {
3636
}
3737
});
3838

39-
// Log our bot in using the token from https://discord.com/developers/applications/me
39+
// Log our bot in using the token from https://discord.com/developers/applications
4040
client.login('your token here');

docs/examples/greeting.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ client.on('guildMemberAdd', member => {
2828
channel.send(`Welcome to the server, ${member}`);
2929
});
3030

31-
// Log our bot in using the token from https://discord.com/developers/applications/me
31+
// Log our bot in using the token from https://discord.com/developers/applications
3232
client.login('your token here');

docs/examples/moderation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ client.on('message', message => {
6666
}
6767
});
6868

69-
// Log our bot in using the token from https://discord.com/developers/applications/me
69+
// Log our bot in using the token from https://discord.com/developers/applications
7070
client.login('your token here');
7171
```
7272

@@ -142,7 +142,7 @@ client.on('message', message => {
142142
}
143143
});
144144

145-
// Log our bot in using the token from https://discord.com/developers/applications/me
145+
// Log our bot in using the token from https://discord.com/developers/applications
146146
client.login('your token here');
147147
```
148148

docs/examples/ping.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ client.on('message', message => {
2727
}
2828
});
2929

30-
// Log our bot in using the token from https://discord.com/developers/applications/me
30+
// Log our bot in using the token from https://discord.com/developers/applications
3131
client.login('your token here');

0 commit comments

Comments
 (0)