From 7d83d3edf99001494b5c0d05c0f6750087e2baee Mon Sep 17 00:00:00 2001 From: Matti Bar-Zeev Date: Sat, 27 Nov 2021 13:43:22 +0200 Subject: [PATCH] Update plugin-handbook.md Fix a broken sentence. --- translations/en/plugin-handbook.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/translations/en/plugin-handbook.md b/translations/en/plugin-handbook.md index 112a8ebb..e171be20 100644 --- a/translations/en/plugin-handbook.md +++ b/translations/en/plugin-handbook.md @@ -513,7 +513,7 @@ const MyVisitor = { An AST generally has many Nodes, but how do Nodes relate to one another? We could have one giant mutable object that you manipulate and have full access to, -or we can simplify this with **Paths**. +or we can simplify do this with **Paths**. A **Path** is an object representation of the link between two nodes.