Skip to content
This repository has been archived by the owner on Dec 5, 2022. It is now read-only.

docs: Fix simple typo, retrive -> retrieve #334

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/Performance.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ Browsers right now does not expose an API for creating custom PerformanceEntry a

#### why not extend PerformanceEntry?

Even if we hack and extend the PerformanceEntry object, there is no way to retrive the custom entries that are added.
Even if we hack and extend the PerformanceEntry object, there is no way to retrieve the custom entries that are added.

```js
var customEntry = {};
Expand All @@ -172,7 +172,7 @@ customEntry.entryType = "tailor";
customEntry.startTime = performance.now();


// retrive entries
// retrieve entries
performance.getEntries();
// returns []
```
Expand Down