@@ -131,7 +131,7 @@ will of course only have an effect on subsequent method calls.
131
131
The maximum number of items that remain in the cache (assuming no
132
132
TTL pruning or explicit deletions). Note that fewer items may be
133
133
stored 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 .
135
135
136
136
At least one of ` max ` , ` maxSize ` , or ` TTL ` is required. This
137
137
must be a positive integer if set.
@@ -700,7 +700,7 @@ If you call `fetch()` multiple times with the same key value,
700
700
then every call after the first will resolve on the same
701
701
promise<sup >1</sup >,
702
702
_ 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 `
704
704
or ` ignoreFetchAbort ` .
705
705
706
706
In 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
1066
1066
internally in a few places to indicate that a key is not in the
1067
1067
cache.
1068
1068
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
1070
1070
an alias for ` cache.delete(key) ` . Note that this has the effect
1071
1071
that ` cache.has(key) ` will return _ false_ after setting it to
1072
1072
undefined.
0 commit comments