From cff3ac6f93f506330034652f0d2389591bfb45a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Fern=C3=A1ndez=20G=C3=B3mez?= Date: Mon, 22 Dec 2025 11:17:26 +0100 Subject: [PATCH] docs: Fix `download_file` documentation (#45517) Fix a small error in the docs for the extension capabilities Release Notes: - N/A --- docs/src/extensions/capabilities.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/extensions/capabilities.md b/docs/src/extensions/capabilities.md index 4d935a0725a1285065070eccb5112dc636e26a27..9af038497d20aca298515bb87f8e505f9ea03c87 100644 --- a/docs/src/extensions/capabilities.md +++ b/docs/src/extensions/capabilities.md @@ -62,7 +62,7 @@ The `download_file` capability grants extensions the ability to download files u To allow any file to be downloaded: ```toml -{ kind = "download_file", host = "github.com", path = ["**"] } +{ kind = "download_file", host = "*", path = ["**"] } ``` To allow any file to be downloaded from `github.com`: