You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Package errors contains simple golang error handling and classification primitives.
5
+
Package errors provides simple golang error and classification primitives.
6
6
7
7
*[Class](#class)
8
8
*[Interfaces](#interfaces)
@@ -32,7 +32,7 @@ with the same logic but different messages.
32
32
A class might be composed in three different ways:
33
33
34
34
* Major only - the class is Major singleton.
35
-
* Major, Minor only - classes that doesn't need triple subclassification divison.
35
+
* Major, Minor only - classes that don't need triple subclassification divison.
36
36
* Major, Minor, Index - classes that decomposes
37
37
38
38
Use `NewMajor` or `MustNewMajor` functions to create `Major`, `NewMinor` or `MustNewMinor` for new `Minor` and `NewIndex` or `MustNewIndex` for new `Index`.
@@ -116,6 +116,7 @@ In order to create detailed error use the `NewDet` or `NewDetf` functions.
0 commit comments