Skip to content

Commit 6e4a0d7

Browse files
MarkRosemakerncw
authored andcommitted
Remove periods from error messages
Standardized error messages by removing trailing periods for consistency.
1 parent df6bd43 commit 6e4a0d7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

errors.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ var (
3232
ETEMPUNAVAIL = errors.New("Resource temporarily not available, please try again later")
3333
EMACMISMATCH = errors.New("MAC verification failed")
3434
EBADATTR = errors.New("Bad node attribute")
35-
ETOOMANYCONNECTIONS = errors.New("Too many connections on this resource.")
36-
EWRITE = errors.New("File could not be written to (or failed post-write integrity check).")
37-
EREAD = errors.New("File could not be read from (or changed unexpectedly during reading).")
38-
EAPPKEY = errors.New("Invalid or missing application key.")
35+
ETOOMANYCONNECTIONS = errors.New("Too many connections on this resource")
36+
EWRITE = errors.New("File could not be written to (or failed post-write integrity check)")
37+
EREAD = errors.New("File could not be read from (or changed unexpectedly during reading)")
38+
EAPPKEY = errors.New("Invalid or missing application key")
3939
ESSL = errors.New("SSL verification failed")
4040
EGOINGOVERQUOTA = errors.New("Not enough quota")
4141
EMFAREQUIRED = errors.New("Multi-factor authentication required")

0 commit comments

Comments
 (0)