@@ -131,7 +131,7 @@ will of course only have an effect on subsequent method calls.
131131The maximum number of items that remain in the cache (assuming no
132132TTL pruning or explicit deletions). Note that fewer items may be
133133stored if size calculation is used, and ` maxSize ` is exceeded.
134- This must be a positive finite intger .
134+ This must be a positive finite integer .
135135
136136At least one of ` max ` , ` maxSize ` , or ` TTL ` is required. This
137137must be a positive integer if set.
@@ -700,7 +700,7 @@ If you call `fetch()` multiple times with the same key value,
700700then every call after the first will resolve on the same
701701promise<sup >1</sup >,
702702_ even if they have different settings that would otherwise change
703- the behvavior of the fetch_ , such as ` noDeleteOnFetchRejection `
703+ the behavior of the fetch_ , such as ` noDeleteOnFetchRejection `
704704or ` ignoreFetchAbort ` .
705705
706706In most cases, this is not a problem (in fact, only fetching
@@ -1066,7 +1066,7 @@ This cache never stores undefined values, as `undefined` is used
10661066internally in a few places to indicate that a key is not in the
10671067cache.
10681068
1069- You may call ` cache.set(key, undefined) ` , but this is just an
1069+ You may call ` cache.set(key, undefined) ` , but this is just
10701070an alias for ` cache.delete(key) ` . Note that this has the effect
10711071that ` cache.has(key) ` will return _ false_ after setting it to
10721072undefined.
0 commit comments