From 20bb99249bafc36d6e4c0e39af86fae4c18577a2 Mon Sep 17 00:00:00 2001 From: Rob Rix Date: Fri, 4 Oct 2019 17:49:19 -0400 Subject: [PATCH] Fix a typo in the docs. (#457) --- docs/section-2-using-parsers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/section-2-using-parsers.md b/docs/section-2-using-parsers.md index 6d9e0e0b..c8130a9e 100644 --- a/docs/section-2-using-parsers.md +++ b/docs/section-2-using-parsers.md @@ -245,7 +245,7 @@ If you use this group of methods, the syntax tree functions much like an abstrac ## Node Field Names -To make syntax nodes easier to analyze, many grammars assign unique *field names* to particular child nodes. The the next page [explains](./creating-parsers#using-fields) how to do this on your own grammars. If a syntax node has fields, you can access its children using their field name: +To make syntax nodes easier to analyze, many grammars assign unique *field names* to particular child nodes. The next page [explains](./creating-parsers#using-fields) how to do this on your own grammars. If a syntax node has fields, you can access its children using their field name: ```c TSNode ts_node_child_by_field_name(