diff --git a/README.cn.md b/README.cn.md index ab404bd..2b366e7 100644 --- a/README.cn.md +++ b/README.cn.md @@ -11,7 +11,7 @@ 一个轻量级、语义化、对开发者友好的 golang 时间处理库,支持链式调用 -Carbon 已被 [awesome-go](https://github.com/avelino/awesome-go#date-and-time "awesome-go") 收录, 如果您觉得不错,请给个 star 吧 +Carbon 已被 [awesome-go-cn](https://github.com/yinggaozhen/awesome-go-cn#日期和时间 "awesome-go-cn") 收录, 如果您觉得不错,请给个 star 吧 [github.com/golang-module/carbon](https://github.com/golang-module/carbon "github.com/golang-module/carbon") @@ -19,14 +19,14 @@ Carbon 已被 [awesome-go](https://github.com/avelino/awesome-go#date-and-time " #### 安装使用 -##### Golang 版本大于等于 1.16 +##### Golang 版本大于等于 1.16 (推荐) ```go // 使用 github 库 go get -u github.com/golang-module/carbon/v2 import ( - "github.com/golang-module/carbon/v2" +"github.com/golang-module/carbon/v2" ) // 使用 gitee 库 @@ -37,7 +37,7 @@ import ( ) ``` -##### Golang 版本小于 1.16 +##### Golang 版本小于 1.16 (必须) ```go // 使用 github 库 diff --git a/README.jp.md b/README.jp.md index 9cf7a35..231eb2e 100644 --- a/README.jp.md +++ b/README.jp.md @@ -19,7 +19,7 @@ Carbon は [awesome-go](https://github.com/avelino/awesome-go#date-and-time "awe #### インストール使用 -##### Golangバージョンは1.16以上です +##### Golangバージョンは1.16以上です (推奨) ```go // github倉庫を使う @@ -37,7 +37,7 @@ import ( ) ``` -##### Golangバージョンは1.16より小さいです +##### Golangバージョンは1.16より小さいです (必要) ```go // github倉庫を使う diff --git a/README.md b/README.md index df6d85c..120ba2e 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ it is helpful, please give me a star #### Installation -##### Go version >= 1.16 +##### Go version >= 1.16 (recommend) ```go // By github @@ -40,7 +40,7 @@ import ( ) ``` -##### Go version < 1.16 +##### Go version < 1.16 (must) ```go // By github @@ -1342,8 +1342,8 @@ lang.SetLocale("en") c := carbon.SetLanguage(lang) if c.Error != nil { - // Error handle... - log.Fatal(err) +// Error handle... +log.Fatal(err) } c.Now().AddHours(1).DiffForHumans() // 1 hour from now