aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@google.com>2020-01-29 17:21:48 -0500
committerGravatar Benjamin Barenblat <bbaren@google.com>2020-01-29 17:21:48 -0500
commit3e80886920563ebc07177b69115f717263a7f750 (patch)
treedc0083e06bfc0822dc969aa49b4c8f0cda62214c
parent078f886f39e86c9a5b7daea832ea2af97e73c344 (diff)
Correct spelling of “toggle”HEADmaster
-rw-r--r--storage/entry.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/entry.go b/storage/entry.go
index 9a717eb..77d08f6 100644
--- a/storage/entry.go
+++ b/storage/entry.go
@@ -259,7 +259,7 @@ func (s *Storage) ToggleBookmark(userID int64, entryID int64) error {
count, err := result.RowsAffected()
if err != nil {
- return fmt.Errorf(`store: unable to toogle bookmark flag for entry #%d: %v`, entryID, err)
+ return fmt.Errorf(`store: unable to toggle bookmark flag for entry #%d: %v`, entryID, err)
}
if count == 0 {