From 8b44646fa79d0a7869c37edf980c14f432a5934c Mon Sep 17 00:00:00 2001 From: Sunny Hirai Date: Thu, 1 Apr 2021 18:12:33 -0700 Subject: [PATCH] docs: Minor change to try and make gitbook update --- 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 5fb6aec2e..b4530d62b 100644 --- a/docs/concepts/11-typescript.md +++ b/docs/concepts/11-typescript.md @@ -19,7 +19,7 @@ Slate supports typing of one Slate document model (ie. one set of custom `Editor To define a custom `Element` or `Text` type, extend the `CustomTypes` interface in the `slate` module like this. ```ts -// This example is for an Editor with `ReactEditor` and `HistoryEditor` +// This example is for an Editor that uses `ReactEditor` and `HistoryEditor` import { BaseEditor } from 'slate' import { ReactEditor } from 'slate-react' import { HistoryEditor } from 'slate-history'