Skip to content

Commit

Permalink
docs: fix unresolved @link comments
Browse files Browse the repository at this point in the history
PR-URL: #359
Credit: @lukekarrys
Close: #359
Reviewed-by: @isaacs
  • Loading branch information
lukekarrys authored and isaacs committed Oct 31, 2024
1 parent cbdd1d0 commit c5d9949
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ export namespace LRUCache {
*
* This is the union of {@link GetOptions} and {@link SetOptions}, plus
* {@link MemoOptions.forceRefresh}, and
* {@link MemoerOptions.context}
* {@link MemoOptions.context}
*
* Any of these may be modified in the {@link OptionsBase.memoMethod}
* function, but the {@link GetOptions} fields will of course have no
Expand Down Expand Up @@ -1928,7 +1928,7 @@ export class LRUCache<K extends {}, V extends {}, FC = unknown> {

/**
* Return an array of [key, {@link LRUCache.Entry}] tuples which can be
* passed to {@link LRLUCache#load}.
* passed to {@link LRUCache#load}.
*
* The `start` fields are calculated relative to a portable `Date.now()`
* timestamp, even if `performance.now()` is available.
Expand Down Expand Up @@ -2628,7 +2628,7 @@ export class LRUCache<K extends {}, V extends {}, FC = unknown> {
* `cache.fetch(k)` into just an async wrapper around `cache.get(k)`) or
* because `ignoreFetchAbort` was specified (either to the constructor or
* in the {@link LRUCache.FetchOptions}). Also, the
* {@link OptionsBase.fetchMethod} may return `undefined` or `void`, making
* {@link LRUCache.OptionsBase.fetchMethod} may return `undefined` or `void`, making
* the test even more complicated.
*
* Because inferring the cases where `undefined` might be returned are so
Expand Down

0 comments on commit c5d9949

Please sign in to comment.