Skip to content

Commit bea1d09

Browse files
authored
Merge pull request #5 from FishGoddess/develop
v0.7.0
2 parents 95604d4 + 19bdd33 commit bea1d09

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

HISTORY.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
## ✒ 历史版本的特性介绍 (Features in old versions)
22

3+
### v0.7.0
4+
5+
> 此版本发布于 2024-08-11
6+
7+
* 优化使用姿势的重构正式版本
8+
39
### v0.6.3-alpha
410

511
> 此版本发布于 2024-08-11

README.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
[![Coverage](_icons/coverage.svg)](_icons/coverage.svg)
66
![Test](https://github.com/FishGoddess/errors/actions/workflows/test.yml/badge.svg)
77

8-
**Errors** is a lib for handling error gracefully in Go.
8+
**Errors** is a library for handling errors gracefully in Go.
99

1010
[阅读中文版的 Read me](./README.md)
1111

1212
### 🙋‍ Features
1313

14-
* Handling error gracefully, yep, that's all...
14+
* Handling errors gracefully, yep, that's all...
1515

1616
_Check [HISTORY.md](./HISTORY.md) and [FUTURE.md](./FUTURE.md) to know about more information._
1717

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
### 🙋‍ 功能特性
1313

14-
* 优雅地处理 error,嗯,没了。。。
14+
* 优雅地处理错误,嗯,没了。。。
1515

1616
_历史版本的特性请查看 [HISTORY.md](./HISTORY.md)。未来版本的新特性和计划请查看 [FUTURE.md](./FUTURE.md)_
1717

@@ -69,4 +69,4 @@ func main() {
6969

7070
### 👥 贡献者
7171

72-
如果您觉得 **Errors** 缺少您需要的功能,那就 fork 到自己仓库随便玩。当然,也可以提 _**issue**_ :)。
72+
如果您觉得 **errors** 缺少您需要的功能,那就 fork 到自己仓库随便玩。当然,也可以提 _**issue**_ :)。

wrap.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ func (e *Error) WithCaller() *Error {
4343

4444
func (e *Error) WithCallers() *Error {
4545
callers := Callers()
46-
e.caller = strings.Join(callers, "¦")
46+
e.caller = strings.Join(callers, " ¦ ")
4747
return e
4848
}
4949

0 commit comments

Comments
 (0)