From f18a8a66baaecb83d5f794e7b1618ef1b11bc123 Mon Sep 17 00:00:00 2001 From: Marlin Gingerich Date: Sun, 9 Nov 2025 12:53:04 -0500 Subject: [PATCH] Fix malformed code block markdown Fixes instances where code blocks were improperly closed by including language tag. Signed-off-by: Marlin Gingerich --- docs/devbox/faq/index.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/devbox/faq/index.mdx b/docs/devbox/faq/index.mdx index 0d738b4..eea2c09 100644 --- a/docs/devbox/faq/index.mdx +++ b/docs/devbox/faq/index.mdx @@ -51,7 +51,7 @@ the prometheus package: ```bash devbox add prometheus --outputs=out,cli -```bash +``` You can also specify non-default outputs in [flake references](/docs/devbox/guides/using-flakes/): @@ -128,13 +128,13 @@ disable this behavior by setting this environment variable in your shell's rcfil ```bash DEVBOX_NO_PROMPT=true -```json +``` If you are using Fish: -``` -set -U devbox_no_prompt true ```bash +set -U devbox_no_prompt true +``` ## How can I uninstall Devbox?[​](#how-can-i-uninstall-devbox "Direct link to How can I uninstall Devbox?")