From c4eb7b37bc45258dc579c4f4badb684d0335c997 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Theart?= Date: Fri, 21 Feb 2020 18:22:28 +0200 Subject: [PATCH] Update 06-editor.md (#3510) --- docs/concepts/06-editor.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/concepts/06-editor.md b/docs/concepts/06-editor.md index 1bf401416..098444f39 100644 --- a/docs/concepts/06-editor.md +++ b/docs/concepts/06-editor.md @@ -1,6 +1,6 @@ # Editor -All of the behaviors, content and state of a Slate editor is rollup up into a single, top-level `Editor` object. It has an interface of: +All of the behaviors, content and state of a Slate editor is rolled up up into a single, top-level `Editor` object. It has an interface of: ```ts interface Editor { @@ -42,7 +42,7 @@ The `marks` property stores formatting that is attached to the cursor, and that ## Overriding Behaviors -In previous guides we've already hinted at this, but you can overriding any of the behaviors of an editor by overriding it's function properties. +In previous guides we've already hinted at this, but you can override any of the behaviors of an editor by overriding it's function properties. For example, if you want define link elements that are inline nodes: