diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-11-28 12:50:23 +0100 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-11-28 12:50:23 +0100 |
| commit | 7bab6c76599fdfd34ea9bb064d871ed2be01d4c8 (patch) | |
| tree | 8200ead8926c0c5f11f750698760a0bcd93c230c /types/error.go | |
| parent | 7339e77c6eda5b96874dfc099d5c58da8ed53629 (diff) | |
Lint: Run godot fix
Full command: golangci-lint run --disable-all -E godot --fix
Diffstat (limited to 'types/error.go')
| -rw-r--r-- | types/error.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/types/error.go b/types/error.go index a7f70b0..da5d971 100644 --- a/types/error.go +++ b/types/error.go @@ -8,16 +8,16 @@ import ( type ErrLevel int8 const ( - // All other errors, default + // All other errors, default. ErrOther ErrLevel = iota - // The erorr is just here as additional info + // The erorr is just here as additional info. ErrInfo - // The error is just here as a warning + // The error is just here as a warning. ErrWarning - // The error is fatal, the app cannot function + // The error is fatal, the app cannot function. ErrFatal ) @@ -27,12 +27,12 @@ type WrappedErrorMessage struct { Err error } -// NewWrappedError returns a WrappedErrorMessage and uses the error level from the parent +// NewWrappedError returns a WrappedErrorMessage and uses the error level from the parent. func NewWrappedError(message string, err error) *WrappedErrorMessage { return &WrappedErrorMessage{Level: ErrorLevel(err), Message: message, Err: err} } -// NewWrappedError returns a WrappedErrorMessage and uses the given error level from the parent +// NewWrappedError returns a WrappedErrorMessage and uses the given error level from the parent. func NewWrappedErrorLevel(level ErrLevel, message string, err error) *WrappedErrorMessage { return &WrappedErrorMessage{Level: level, Message: message, Err: err} } |
