docs: Fix `download_file` documentation (#45517)

Alejandro Fernández Gómez created

Fix a small error in the docs for the extension capabilities

Release Notes:

- N/A

Change summary

docs/src/extensions/capabilities.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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`: