From 7a139591bf188c4b2a247d6ef8b6890bf053a297 Mon Sep 17 00:00:00 2001 From: Adriana Jara <32825533+tropicadri@users.noreply.github.com> Date: Wed, 24 Apr 2024 10:22:27 -0700 Subject: [PATCH] Update StrategyHandler.ts documentation typo (#3314) --- packages/workbox-strategies/src/StrategyHandler.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/workbox-strategies/src/StrategyHandler.ts b/packages/workbox-strategies/src/StrategyHandler.ts index ad2787652..88609255a 100644 --- a/packages/workbox-strategies/src/StrategyHandler.ts +++ b/packages/workbox-strategies/src/StrategyHandler.ts @@ -265,8 +265,8 @@ class StrategyHandler { * defined on the strategy object. * * The following plugin lifecycle methods are invoked when using this method: - * - cacheKeyWillByUsed() - * - cachedResponseWillByUsed() + * - cacheKeyWillBeUsed() + * - cachedResponseWillBeUsed() * * @param {Request|string} key The Request or URL to use as the cache key. * @return {Promise} A matching response, if found. @@ -308,7 +308,7 @@ class StrategyHandler { * the strategy object. * * The following plugin lifecycle methods are invoked when using this method: - * - cacheKeyWillByUsed() + * - cacheKeyWillBeUsed() * - cacheWillUpdate() * - cacheDidUpdate() *