From 4183499ff95a74d541b5a356b037e050eb1b0051 Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Thu, 14 Oct 2021 10:46:09 +0200 Subject: [PATCH] docs: fix typos --- docs/api/marks/subscript.md | 2 +- docs/api/marks/superscript.md | 2 +- docs/guide/node-views/js.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/api/marks/subscript.md b/docs/api/marks/subscript.md index 95d5d014..8a7841ab 100644 --- a/docs/api/marks/subscript.md +++ b/docs/api/marks/subscript.md @@ -1,5 +1,5 @@ --- -description: Write slightly below the the normal line, to show you’re unique. +description: Write slightly below the normal line, to show you’re unique. --- # Subscript diff --git a/docs/api/marks/superscript.md b/docs/api/marks/superscript.md index 1bd4866a..6cd2c7d7 100644 --- a/docs/api/marks/superscript.md +++ b/docs/api/marks/superscript.md @@ -1,5 +1,5 @@ --- -description: Write slightly above the the normal line, to show you’re just next level. +description: Write slightly above the normal line, to show you’re just next level. --- # Superscript diff --git a/docs/guide/node-views/js.md b/docs/guide/node-views/js.md index 2f3d507a..52c4e939 100644 --- a/docs/guide/node-views/js.md +++ b/docs/guide/node-views/js.md @@ -45,7 +45,7 @@ Got it? Let’s see it in action. Feel free to copy the below example to get sta That node view even interacts with the editor. Time to see how that is wired up. ## Access node attributes -The editor passes a few helpful things to your render function. One of them is the the `node` prop. This one enables you to access node attributes in your node view. Let’s say you have [added an attribute](/guide/custom-extensions#attributes) named `count` to your node extension. You could access the attribute like this: +The editor passes a few helpful things to your render function. One of them is the `node` prop. This one enables you to access node attributes in your node view. Let’s say you have [added an attribute](/guide/custom-extensions#attributes) named `count` to your node extension. You could access the attribute like this: ```js addNodeView() {