summaryrefslogtreecommitdiff
path: root/internal/storage/errors.go
diff options
context:
space:
mode:
authorAmir Zarrinkafsh <nightah@me.com>2020-09-04 13:20:17 +1000
committerGitHub <noreply@github.com>2020-09-04 13:20:17 +1000
commit3c861922a677a180059b1ee684e482983ef0dbb6 (patch)
tree01dae492cda482bc8e614365a474b09ffa8ff2c7 /internal/storage/errors.go
parent9d7f64c834d913f25244f21b863f1495f80849de (diff)
[MISC] Address errors from linter updates (#1308)
Diffstat (limited to 'internal/storage/errors.go')
-rw-r--r--internal/storage/errors.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/storage/errors.go b/internal/storage/errors.go
index 1f8d4f9a7..30384e21a 100644
--- a/internal/storage/errors.go
+++ b/internal/storage/errors.go
@@ -6,6 +6,6 @@ var (
// ErrNoU2FDeviceHandle error thrown when no U2F device handle has been found in DB.
ErrNoU2FDeviceHandle = errors.New("No U2F device handle found")
- // ErrNoTOTPSecret error thrown when no TOTP secret has been found in DB
+ // ErrNoTOTPSecret error thrown when no TOTP secret has been found in DB.
ErrNoTOTPSecret = errors.New("No TOTP secret registered")
)