Correct spelling of “toggle”

This commit is contained in:
Benjamin Barenblat 2020-01-29 17:21:48 -05:00 committed by Frédéric Guillot
parent 078f886f39
commit cb494ac416
1 changed files with 1 additions and 1 deletions

View File

@ -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 {