From 8d7cca28d94b9e5418516da417cf0ac4347ef96f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Ku=CC=88hn?= Date: Thu, 4 Feb 2021 10:39:46 +0100 Subject: [PATCH] typo --- docs/src/docPages/api/keyboard-shortcuts.md | 2 +- docs/src/docPages/guide/extend-extensions.md | 2 +- docs/src/docPages/guide/styling.md | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/src/docPages/api/keyboard-shortcuts.md b/docs/src/docPages/api/keyboard-shortcuts.md index 2700e454..64486a63 100644 --- a/docs/src/docPages/api/keyboard-shortcuts.md +++ b/docs/src/docPages/api/keyboard-shortcuts.md @@ -94,6 +94,6 @@ new Editor({ extensions: [ CustomBulletList(), // … - ] + ], }) ``` diff --git a/docs/src/docPages/guide/extend-extensions.md b/docs/src/docPages/guide/extend-extensions.md index 12dae775..531f351c 100644 --- a/docs/src/docPages/guide/extend-extensions.md +++ b/docs/src/docPages/guide/extend-extensions.md @@ -28,7 +28,7 @@ new Editor({ extensions: [ CustomBulletList(), // … - ] + ], }) ``` diff --git a/docs/src/docPages/guide/styling.md b/docs/src/docPages/guide/styling.md index d8156de6..4543a5ae 100644 --- a/docs/src/docPages/guide/styling.md +++ b/docs/src/docPages/guide/styling.md @@ -99,9 +99,9 @@ const CustomBold = Bold.extend({ new Editor({ extensions: [ - // … - CustomBold(), - ] + // … + CustomBold(), + ], }) ```