1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-07-02 16:38:37 +00:00

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

View file

@ -259,7 +259,7 @@ func (s *Storage) ToggleBookmark(userID int64, entryID int64) error {
count, err := result.RowsAffected() count, err := result.RowsAffected()
if err != nil { 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 { if count == 0 {