Skip to content

Commit

Permalink
Remove supportsPromises from the events
Browse files Browse the repository at this point in the history
  • Loading branch information
dlbjames authored Aug 25, 2023
1 parent 50e0a08 commit 865afe7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions proposals/reading_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,15 +245,15 @@ dictionary UpdateEntryOptions {
interface Events {
// Triggered when a ReadingListEntry is added to the reading list.
// |entry|: The entry that was added.
[supportsPromises] static void onEntryAdded(ReadingListEntry entry);
static void onEntryAdded(ReadingListEntry entry);

// Triggered when a ReadingListEntry is removed from the reading list.
// |entry|: The entry that was removed.
[supportsPromises] static void onEntryRemoved(ReadingListEntry entry);
static void onEntryRemoved(ReadingListEntry entry);

// Triggered when a ReadingListEntry was updated in the reading list.
// |entry|: The entry that was updated.
[supportsPromises] static void onEntryUpdated(ReadingListEntry entry);
static void onEntryUpdated(ReadingListEntry entry);
};
};

Expand Down

0 comments on commit 865afe7

Please sign in to comment.