diff --git a/site/content/docs/03-run-time.md b/site/content/docs/03-run-time.md index 2c5df84c6d..20c0ce98dc 100644 --- a/site/content/docs/03-run-time.md +++ b/site/content/docs/03-run-time.md @@ -265,7 +265,7 @@ const time = readable(new Date(), set => { }); ``` -#### `derive` +#### `derived` * `store = derived(a, callback: (a: any) => any)` * `store = derived(a, callback: (a: any, set: (value: any) => void) => void)` diff --git a/site/content/tutorial/08-stores/04-derived-stores/text.md b/site/content/tutorial/08-stores/04-derived-stores/text.md index 82127944b5..5663d3c81d 100644 --- a/site/content/tutorial/08-stores/04-derived-stores/text.md +++ b/site/content/tutorial/08-stores/04-derived-stores/text.md @@ -11,4 +11,4 @@ export const elapsed = derived( ); ``` -> It's possible to derive a store from multiple inputs, and to explicitly `set` a value instead of returning it (which is useful for deriving values asynchronously). Consult the [API reference](docs/TK) for more information. \ No newline at end of file +> It's possible to derive a store from multiple inputs, and to explicitly `set` a value instead of returning it (which is useful for deriving values asynchronously). Consult the [API reference](docs#derived) for more information.