From 9f9c21356b75609400984df59b40f3453349b984 Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Wed, 21 Apr 2021 15:41:27 +0200 Subject: [PATCH] fix broken links --- docs/src/docPages/api/commands.md | 2 +- docs/static/_redirects | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/docPages/api/commands.md b/docs/src/docPages/api/commands.md index cb554aad..a9355d0e 100644 --- a/docs/src/docPages/api/commands.md +++ b/docs/src/docPages/api/commands.md @@ -91,7 +91,7 @@ Both calls would return `true` if it’s possible to apply the commands, and `fa In order to make that work with your custom commands, don’t forget to return `true` or `false`. -For some of your own commands, you probably want to work with the raw [transaction](/api/concept). To make them work with `.can()` you should check if the transaction should be dispatched. Here is how you can create a simple `.insertText()` command: +For some of your own commands, you probably want to work with the raw [transaction](/api/introduction). To make them work with `.can()` you should check if the transaction should be dispatched. Here is how you can create a simple `.insertText()` command: ```js export default (value) => ({ tr, dispatch }) => { diff --git a/docs/static/_redirects b/docs/static/_redirects index c3372f3c..7f7c230d 100644 --- a/docs/static/_redirects +++ b/docs/static/_redirects @@ -1,4 +1,4 @@ /overview / /examples /examples/default /guide /guide/configuration -/api /api/concept +/api /api/introduction