From 84548f82966f1d64cf46e3f831499df2909296ee Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Thu, 3 Sep 2020 06:26:48 +1000 Subject: [PATCH] docs: Fix simple typo, retrive -> retrieve There is a small typo in docs/Performance.md. Should read `retrieve` rather than `retrive`. --- docs/Performance.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Performance.md b/docs/Performance.md index 26a7a2d..778cd02 100644 --- a/docs/Performance.md +++ b/docs/Performance.md @@ -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 = {}; @@ -172,7 +172,7 @@ customEntry.entryType = "tailor"; customEntry.startTime = performance.now(); -// retrive entries +// retrieve entries performance.getEntries(); // returns [] ```