From e4db33b5ccb805f2e3e38efc7da89d6fde6a6623 Mon Sep 17 00:00:00 2001 From: albttx Date: Fri, 7 Aug 2026 21:01:10 +0200 Subject: [PATCH] fix(docs): wrap x/ paths in backticks to fix MDX build MDX parsed the unquoted in plain text as an unclosed JSX tag, breaking `yarn build` with "Expected corresponding JSX closing tag for ". Wrapping the paths in inline code resolves it. Co-Authored-By: Claude Opus 4.8 --- docs/docs/03-CLI-Commands/01-cli-commands.md | 4 ++-- .../version-v29/03-CLI-Commands/01-cli-commands.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docs/03-CLI-Commands/01-cli-commands.md b/docs/docs/03-CLI-Commands/01-cli-commands.md index 7c24da95de..938b0f247c 100644 --- a/docs/docs/03-CLI-Commands/01-cli-commands.md +++ b/docs/docs/03-CLI-Commands/01-cli-commands.md @@ -1784,9 +1784,9 @@ Module migration boilerplate Scaffold no-op migration boilerplate for an existing Cosmos SDK module. -This command creates a new migration file in "x//migrations/vN/", +This command creates a new migration file in `x//migrations/vN/`, increments the module consensus version, and registers the new migration handler -inside "x//module/module.go". +inside `x//module/module.go`. ``` ignite scaffold migration [module] [flags] diff --git a/docs/versioned_docs/version-v29/03-CLI-Commands/01-cli-commands.md b/docs/versioned_docs/version-v29/03-CLI-Commands/01-cli-commands.md index 7c24da95de..938b0f247c 100644 --- a/docs/versioned_docs/version-v29/03-CLI-Commands/01-cli-commands.md +++ b/docs/versioned_docs/version-v29/03-CLI-Commands/01-cli-commands.md @@ -1784,9 +1784,9 @@ Module migration boilerplate Scaffold no-op migration boilerplate for an existing Cosmos SDK module. -This command creates a new migration file in "x//migrations/vN/", +This command creates a new migration file in `x//migrations/vN/`, increments the module consensus version, and registers the new migration handler -inside "x//module/module.go". +inside `x//module/module.go`. ``` ignite scaffold migration [module] [flags]