diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2019-06-19 14:05:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-19 14:05:03 +0100 |
commit | bc382bba4623a1c7ae16535541f2f4b23708999c (patch) | |
tree | 9149778f259732f866b5265f531a10158dd2eceb /clientapi/jsonerror/jsonerror.go | |
parent | 7a2d5b17b98172b11ebcf2aa260745d0dccb2a1a (diff) |
Fix pipeline, emoji and syntax (#713)
Fixes #697
Switched to golangci-lint, fixes issues with buildkite and does some linting fixes to appease the new linters.
Diffstat (limited to 'clientapi/jsonerror/jsonerror.go')
-rw-r--r-- | clientapi/jsonerror/jsonerror.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clientapi/jsonerror/jsonerror.go b/clientapi/jsonerror/jsonerror.go index fa15d9d8..8df1fead 100644 --- a/clientapi/jsonerror/jsonerror.go +++ b/clientapi/jsonerror/jsonerror.go @@ -87,7 +87,7 @@ func MissingToken(msg string) *MatrixError { } // UnknownToken is an error when the client tries to access a resource which -// requires authentication and supplies an unrecognized token +// requires authentication and supplies an unrecognised token func UnknownToken(msg string) *MatrixError { return &MatrixError{"M_UNKNOWN_TOKEN", msg} } |