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: