Skip to content

Commit d82b72a

Browse files
authored
Update README.md
1 parent 2eb15c8 commit d82b72a

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## Highlights
2+
3+
The *errorx* library provides error implementation and error-related utilities.
4+
Library features include (but are not limited to):
5+
* Stack traces
6+
* Composability of errors
7+
* Means to enhance error both with stack trace and with message
8+
* Robust type and trait checks
9+
110
## Introduction
211

312
Conventional approach towards errors in *Go* is quite limited.
@@ -7,7 +16,7 @@ The typical case implies an error being created at some point:
716
return errors.New("now this is unfortunate")
817
```
918

10-
Then being handled with a no-brainer:
19+
Then being passed along with a no-brainer:
1120
```go
1221
if err != nil {
1322
return err

0 commit comments

Comments
 (0)