From 7e304166d735db5376727c869e1240cbeaab4312 Mon Sep 17 00:00:00 2001 From: Yika Date: Tue, 8 Dec 2020 19:25:10 +0800 Subject: [PATCH] fixed typo update app\http\controllers\public.go update app\mdfile\article.go update app\mdfile\list.go update app\routes\web.go --- app/http/controllers/public.go | 6 +++--- app/mdfile/article.go | 2 +- app/mdfile/list.go | 2 +- app/routes/web.go | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/http/controllers/public.go b/app/http/controllers/public.go index d9fe47a..aa505db 100644 --- a/app/http/controllers/public.go +++ b/app/http/controllers/public.go @@ -69,7 +69,7 @@ func mergeH(c *gin.Context, h gin.H) gin.H { return mh } -// ToKeywords 用都好分割,拼接关键词 +// ToKeywords 用逗号分隔,拼接关键词 func ToKeywords(works ...string) string { return strings.Join(works, ",") } @@ -90,7 +90,7 @@ func Webhook(c *gin.Context) { pullDocs() - // 从新初始化博客列表的内容 + // 重新初始化博客列表的内容 mdfile.Model.Reload() } @@ -132,7 +132,7 @@ func checkSecret(singn string, body []byte) bool { singnature := make([]byte, 20) hex.Decode(singnature, []byte(singn[5:])) - // 比较签名是否一直 + // 比较签名是否一致 if hmac.Equal(singnature, mKey) { return true } diff --git a/app/mdfile/article.go b/app/mdfile/article.go index 7eb1fac..4f6609a 100644 --- a/app/mdfile/article.go +++ b/app/mdfile/article.go @@ -72,7 +72,7 @@ func getAritclesSpecifiedCategory(category *Category) Articles { articles := make([]Article, 0) for _, info := range filesInfo { - // 如果目录下的是文件,就不处理 + // 如果目录下的是文件夹,就不处理 if info.IsDir() { continue } diff --git a/app/mdfile/list.go b/app/mdfile/list.go index 5b29d64..d9da052 100644 --- a/app/mdfile/list.go +++ b/app/mdfile/list.go @@ -45,7 +45,7 @@ type Category struct { // 分类的描述 Description string - // 当是一个外联时,就不会再去获取对应的 markdown 文档 + // 当是一个外链时,就不会再去获取对应的 markdown 文档 OutLink bool `toml:"out_link"` // 是否是激活状态 diff --git a/app/routes/web.go b/app/routes/web.go index b6343aa..f43aba5 100644 --- a/app/routes/web.go +++ b/app/routes/web.go @@ -24,8 +24,8 @@ func New(e *gin.Engine) { // 首页 front.GET("/", controllers.Home) - // about 页 + // about 页 front.GET("/about", controllers.About) // 博客文章详情