diff --git a/articles/storage/blobs/blobfuse2-commands-secure-decrypt.md b/articles/storage/blobs/blobfuse2-commands-secure-decrypt.md
index 37901e544331b..0a507aa7f755c 100644
--- a/articles/storage/blobs/blobfuse2-commands-secure-decrypt.md
+++ b/articles/storage/blobs/blobfuse2-commands-secure-decrypt.md
@@ -27,7 +27,7 @@ The following flags are inherited from grandparent command [`blobfuse2`](blobfus
| Flag | Short version | Value type | Default value | Description |
|--|--|--|--|--|
-| disable-version-check | | boolean | false | Enables or disables automatic version checking of the BlobFuse2 binaries |
+| disable-version-check | | boolean | false | Enables or disables automatic version checking of the blobfuse2 binaries |
| help | -h | n/a | | Help info for the blobfuse2 command and subcommands |
### Flags inherited from the BlobFuse2 secure command
@@ -36,18 +36,18 @@ The following flags are inherited from parent command [`blobfuse2 secure`](blobf
| Flag | Value type | Default value | Description |
|--|--|--|--|
-| config-file | string | ./config.yaml | The path configuration file |
-| output-file | string | | Path and name for the output file |
-| passphrase | string | | The Key to be used for encryption or decryption
Can also be specified by environment variable BLOBFUSE2_SECURE_CONFIG_PASSPHRASE.
The key must be 16 (AES-128), 24 (AES-192), or 32 (AES-256) bytes in length. |
+| config-file | string | ./config.yaml | The path of encrypted configuration file |
+| output-file | string | | The path and name for the output decrypted configuration file |
+| passphrase | string | | The key to be used for encryption or decryption
Can also be specified by environment variable BLOBFUSE2_SECURE_CONFIG_PASSPHRASE.
The key must be 16 (AES-128), 24 (AES-192), or 32 (AES-256) bytes in length. |
## Examples
> [!NOTE]
-> The following examples assume you have already created a configuration file in the current directory.
+> The following examples assumes that you have already created a encrypted configuration file in the current directory.
Decrypt a BlobFuse2 configuration file using a passphrase:
-`blobfuse2 secure decrypt --config-file=./config.yaml --passphrase=PASSPHRASE`
+`blobfuse2 secure decrypt --config-file=./config.yaml --passphrase=PASSPHRASE --output-file=./decryptedconfig.yaml`
## See also