fix broken links

This commit is contained in:
Hans Pagel
2021-04-21 15:41:27 +02:00
parent a640bb1502
commit 9f9c21356b
2 changed files with 2 additions and 2 deletions

View File

@@ -91,7 +91,7 @@ Both calls would return `true` if its possible to apply the commands, and `fa
In order to make that work with your custom commands, dont 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 }) => {