Skip to content

Commit 2d02f08

Browse files
docs: fix broken link in commands.md (#1248)
1 parent 27358b4 commit 2d02f08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content/concepts/commands.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Your app can use the `command()` method to listen to incoming slash command requ
88

99
Commands must be acknowledged with `ack()` to inform Slack your app has received the request.
1010

11-
There are two ways to respond to slash commands. The first way is to use `say()`, which accepts a string or JSON payload. The second is `respond()` which is a utility for the `response_url`. These are explained in more depth in the [responding to actions](/concepts/action-respond) section.
11+
There are two ways to respond to slash commands. The first way is to use `say()`, which accepts a string or JSON payload. The second is `respond()` which is a utility for the `response_url`. These are explained in more depth in the [responding to actions](/concepts/actions) section.
1212

1313
When setting up commands within your app configuration, you'll append `/slack/events` to your request URL.
1414

@@ -20,4 +20,4 @@ def repeat_text(ack, respond, command):
2020
# Acknowledge command request
2121
ack()
2222
respond(f"{command['text']}")
23-
```
23+
```

0 commit comments

Comments
 (0)