From 8193ad177822e933fc973c5a2b9f0034b42e909c Mon Sep 17 00:00:00 2001 From: adrien guernier Date: Mon, 8 Apr 2024 11:49:47 +0200 Subject: [PATCH] fix TipTp typo --- docs/RichTextInput.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/RichTextInput.md b/docs/RichTextInput.md index b7931137d74..35a8d708589 100644 --- a/docs/RichTextInput.md +++ b/docs/RichTextInput.md @@ -173,7 +173,7 @@ const MyRichTextInput = ({ size, ...props }) => ( ## Calling The `editor` Object -You may want to access the TipTp `editor` object to tweak extensions, input rules, etc. (see [the TipTap editor documentation](https://tiptap.dev/docs/editor/api/editor) for details). To do so, you can assign a `ref` in the `onCreate` function in the `editorOptions` prop of your `` component, as follows: +You may want to access the TipTap `editor` object to tweak extensions, input rules, etc. (see [the TipTap editor documentation](https://tiptap.dev/docs/editor/api/editor) for details). To do so, you can assign a `ref` in the `onCreate` function in the `editorOptions` prop of your `` component, as follows: {% raw %} ```tsx