From f62c9b0405fcc8084b242e59ffbb60518dd03963 Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Thu, 9 May 2019 09:32:46 -0700 Subject: [PATCH] Update Changelog.md (#2749) --- packages/slate/Changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/slate/Changelog.md b/packages/slate/Changelog.md index 2b635bb94..b84201fde 100644 --- a/packages/slate/Changelog.md +++ b/packages/slate/Changelog.md @@ -35,7 +35,7 @@ element.ancestors(path, options) element.siblings(path, options) ``` -You can use them just like the native JavaScript iterables. For example, you can through the next text nodes after a specific node: +You can use them just like the native JavaScript iterables. For example, you can loop through the text nodes after a specific node: ```js for (const next of document.texts({ path: start.path })) {