Skip to content

Commit

Permalink
Correct spelling of “toggle”
Browse files Browse the repository at this point in the history
  • Loading branch information
bbarenblat authored and fguillot committed Jan 30, 2020
1 parent 078f886 commit cb494ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/entry.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit cb494ac

Please sign in to comment.