From 864f156ee08e730693780aa2734003aae87ddada Mon Sep 17 00:00:00 2001 From: Marcin Nowak-Liebiediew Date: Fri, 3 Nov 2023 21:39:33 +0100 Subject: [PATCH] Update docs/design/dfx-extensions.md Co-authored-by: Eric Swanson <64809312+ericswanson-dfinity@users.noreply.github.com> --- docs/design/dfx-extensions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design/dfx-extensions.md b/docs/design/dfx-extensions.md index fa3c2e3e24..abb3b798ea 100644 --- a/docs/design/dfx-extensions.md +++ b/docs/design/dfx-extensions.md @@ -62,4 +62,4 @@ The extension's binary is launched as a child process. The system waits for the ### Extensions as Commands -Extensions are converted to command-line commands via an `extension.json` manifest, which encodes metadata and command data. Once installed, extensions produce CLI commands with defined subcommands and arguments through this manifest. The manifest file contains metadata like the extension's name, version, authors, dependencies, and subcommands. Each extension can possess subcommands with specific arguments. By translating the manifest into command-line commands, dfx enables the user to interact with extension commands, including their subcommands and arguments, which in practice means that any command and subcommand will be displayed when `dfx EXT_NAME --help`, or `dfx EXT_NAME SUBCMD` is called, and it will display all available args, options and subcommands. +Extensions are converted to command-line commands via an `extension.json` manifest, which encodes metadata and command data. Once installed, extensions produce CLI commands with defined subcommands and arguments through this manifest. The manifest file contains metadata like the extension's name, version, authors, dependencies, and subcommands. Each extension can provide subcommands with specific arguments. By translating the manifest into command-line commands, dfx enables the user to interact with extension commands, including their subcommands and arguments, which in practice means that any command and subcommand will be displayed when `dfx EXT_NAME --help`, or `dfx EXT_NAME SUBCMD` is called, and it will display all available args, options and subcommands.