From 6d833429c9534ed0c83f741e8bd5c000360b777f Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Sun, 24 Mar 2024 22:15:53 +0800 Subject: [PATCH] :art: Title localization when creating a document https://github.com/siyuan-note/siyuan/issues/10719 --- kernel/model/mount.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/model/mount.go b/kernel/model/mount.go index 2d79e64e3..bcfa607de 100644 --- a/kernel/model/mount.go +++ b/kernel/model/mount.go @@ -71,7 +71,7 @@ func RenameBox(boxID, name string) (err error) { } if 512 < utf8.RuneCountInString(name) { - // 限制笔记本名和文档名最大长度为 `512` + // 限制笔记本名和文档名最大长度为 `512` https://github.com/siyuan-note/siyuan/issues/6299 err = errors.New(Conf.Language(106)) return }