From 15966086d4b888c59ccf8810efbcca1727108bb5 Mon Sep 17 00:00:00 2001 From: Sunny Hirai Date: Thu, 1 Apr 2021 13:47:13 -0700 Subject: [PATCH] docs: Small wording change --- docs/concepts/11-typescript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/11-typescript.md b/docs/concepts/11-typescript.md index de267c022..5fb6aec2e 100644 --- a/docs/concepts/11-typescript.md +++ b/docs/concepts/11-typescript.md @@ -8,7 +8,7 @@ Slate supports typing of one Slate document model (ie. one set of custom `Editor > > Please read the guide below first to understand CustomTypes. > -> If you are having issues, here are the most common migration gotchas: +> If you are having issues, here are common migration gotchas: > > - You get typing errors when referring to `node.type` (Property `type` does not exist on type `Node`). To fix this, you need something like `Element.isElement(node) && node.type === 'paragraph'`. This is because a `Node` can be an `Element` or `Text` and `Text` does not have a `type` property. >