From 31e0d1612c14e0e19e49865cc24e77b52cfc20f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Ku=CC=88hn?= Date: Sun, 18 Apr 2021 23:21:52 +0200 Subject: [PATCH] docs: update content --- docs/src/docPages/api/commands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/docPages/api/commands.md b/docs/src/docPages/api/commands.md index c6ed1a46..ee248f90 100644 --- a/docs/src/docPages/api/commands.md +++ b/docs/src/docPages/api/commands.md @@ -60,7 +60,7 @@ editor .focus() .command(({ tr }) => { // manipulate the transaction - tr.insertContent('hey, that’s cool!') + tr.insertText('hey, that’s cool!') return true })