From 6599e5af6e47307b4a565495ca8bb84453beee91 Mon Sep 17 00:00:00 2001 From: Ollie Gilbey Date: Thu, 16 Jan 2025 14:55:21 +0000 Subject: [PATCH] fix: verbatim text to escape mod This commit simply wraps the path with the placeholder in backticks. is otherwise read as a JSX tag and breaks the unified docsite as it is left open. --- docs/build/building-apps/upgrades/0.52.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build/building-apps/upgrades/0.52.md b/docs/build/building-apps/upgrades/0.52.md index 5eb00b0ca..a41fe7c6d 100644 --- a/docs/build/building-apps/upgrades/0.52.md +++ b/docs/build/building-apps/upgrades/0.52.md @@ -213,7 +213,7 @@ plugins: ### Refactor Module Imports to cosmossdk.io/x/ -All modules except auth have been split into their own go.mod and are imported via cosmossdk.io/x/. +All modules except auth have been split into their own go.mod and are imported via `cosmossdk.io/x/`. * Replace import paths from github.com/cosmos/cosmos-sdk/x/{moduleName} to cosmossdk.io/x/{moduleName}.