From 785b7d943811cc768036a30e47949c6c253e20c7 Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Wed, 23 Oct 2019 03:11:13 +0200 Subject: [PATCH] typo --- src/parse_productions.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/parse_productions.cpp b/src/parse_productions.cpp index 36882a168..05fc80cee 100644 --- a/src/parse_productions.cpp +++ b/src/parse_productions.cpp @@ -17,8 +17,8 @@ using namespace grammar; // Herein are encoded the productions for our LL2 fish grammar. // -// Each symbol (e.g. symbol_job_list) has a corresponding function (e.g. resolve_job_lits). The -// function accepts two tokens, representing the first and second lookahead, and returns returns a +// Each symbol (e.g. symbol_job_list) has a corresponding function (e.g. resolve_job_list). The +// function accepts two tokens, representing the first and second lookahead, and returns a // production representing the rule, or NULL on error. There is also a tag value which is returned // by reference; the tag is a sort of node annotation. //