summaryrefslogtreecommitdiff
path: root/types
diff options
context:
space:
mode:
Diffstat (limited to 'types')
-rw-r--r--types/error.go12
-rw-r--r--types/server.go2
2 files changed, 7 insertions, 7 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}
}
diff --git a/types/server.go b/types/server.go
index 24db8f2..c15cb4e 100644
--- a/types/server.go
+++ b/types/server.go
@@ -33,7 +33,7 @@ type DiscoveryServers struct {
type DiscoMapOrString map[string]string
// The display name can either be a map or a string in the server list
-// Unmarshal it by first trying a string and then the map
+// Unmarshal it by first trying a string and then the map.
func (DN *DiscoMapOrString) UnmarshalJSON(data []byte) error {
var displayNameString string