From 291501700955f7a3eccd88403c20de9f2c67b0b1 Mon Sep 17 00:00:00 2001 From: chenqin <490358423@qq.com> Date: Tue, 19 Nov 2024 17:15:33 +0800 Subject: [PATCH] fix comment --- docs/versioned_docs/version-v28/02-guide/04-blog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/versioned_docs/version-v28/02-guide/04-blog.md b/docs/versioned_docs/version-v28/02-guide/04-blog.md index b082438ecb..2f0cb412d9 100644 --- a/docs/versioned_docs/version-v28/02-guide/04-blog.md +++ b/docs/versioned_docs/version-v28/02-guide/04-blog.md @@ -111,7 +111,7 @@ Add the `PostKey` and `PostCountKey` functions to the `x/blog/types/keys.go` fil ```go title="x/blog/types/keys.go" // PostKey is used to uniquely identify posts within the system. - // It will be used as the beginning of the key for each post, followed bei their unique ID + // It will be used as the beginning of the key for each post, followed by their unique ID PostKey = "Post/value/" // This key will be used to keep track of the ID of the latest post added to the store.