We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2eb15c8 commit d82b72aCopy full SHA for d82b72a
1 file changed
README.md
@@ -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
10
## Introduction
11
12
Conventional approach towards errors in *Go* is quite limited.
@@ -7,7 +16,7 @@ The typical case implies an error being created at some point:
16
return errors.New("now this is unfortunate")
17
```
18
-Then being handled with a no-brainer:
19
+Then being passed along with a no-brainer:
20
```go
21
if err != nil {
13
22
return err
0 commit comments