From d26e62157427f1f93534b63f194fc2a379399824 Mon Sep 17 00:00:00 2001 From: Eden Zimbelman Date: Thu, 20 Nov 2025 19:33:47 -0800 Subject: [PATCH] docs: match reference description of the context actions block --- block-kit/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/block-kit/README.md b/block-kit/README.md index 0f2b017..5f7a51c 100644 --- a/block-kit/README.md +++ b/block-kit/README.md @@ -9,7 +9,7 @@ Read the [docs](https://docs.slack.dev/block-kit/) to learn concepts behind thes ### Blocks - **[Actions](https://docs.slack.dev/reference/block-kit/blocks/actions-block)**: Holds multiple interactive elements. [Implementation](./src/blocks/actions.py). -- **[Context actions](https://docs.slack.dev/reference/block-kit/blocks/context-actions-block)**: Holds interactive elements like feedback buttons and icon buttons. [Implementation](./src/blocks/context_actions.py). +- **[Context actions](https://docs.slack.dev/reference/block-kit/blocks/context-actions-block)**: Displays actions as contextual info, which can include both feedback buttons and icon buttons. [Implementation](./src/blocks/context_actions.py). - **[Context](https://docs.slack.dev/reference/block-kit/blocks/context-block)**: Provides contextual info, which can include both images and text. [Implementation](./src/blocks/context.py). - **[Divider](https://docs.slack.dev/reference/block-kit/blocks/divider-block)**: Visually separates pieces of info inside of a message. [Implementation](./src/blocks/divider.py). - **[File](https://docs.slack.dev/reference/block-kit/blocks/file-block)**: Displays info about remote files. [Implementation](./src/blocks/file.py).