From fcb7a29250b7411854cc94d7066a9e246ef2d63d Mon Sep 17 00:00:00 2001 From: Daniel Vandersluis Date: Wed, 13 Nov 2024 11:34:46 -0500 Subject: [PATCH] Fix typo in node_pattern_compiler.adoc (#338) --- docs/modules/ROOT/pages/node_pattern_compiler.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/node_pattern_compiler.adoc b/docs/modules/ROOT/pages/node_pattern_compiler.adoc index 665bac700..aebc4c5a9 100644 --- a/docs/modules/ROOT/pages/node_pattern_compiler.adoc +++ b/docs/modules/ROOT/pages/node_pattern_compiler.adoc @@ -93,7 +93,7 @@ The bulk of the processing is in the inherited class `parser.racc.rb` that is ge The `Parser` emits `NodePattern::Node` which are similar to RuboCop's node. They both inherit from ``parser``'s `Parser::AST::Source::Node`, and share additional methods too. -Like for RuboCop's nodes, some nodes have specicialized classes (e.g. +Like for RuboCop's nodes, some nodes have specialized classes (e.g. `Sequence`) while other nodes use the base class directly (e.g. `s(:number, 42)`)