From f0e60cce6a018f420bf009a2374b139625b4ec4d Mon Sep 17 00:00:00 2001 From: TSUYUSATO Kitsune Date: Mon, 30 Oct 2023 12:40:44 +0900 Subject: [PATCH] Fix tiny typos --- TODO | 2 +- doc/ja/grammar.ja.rdoc | 2 +- sample/lists.y | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/TODO b/TODO index 8e68e6e4..22ffd7fc 100644 --- a/TODO +++ b/TODO @@ -1,5 +1,5 @@ * check 'error' token handling. * interactive transition table monitor. * support backtracking. -* output Ruby extention library? +* output Ruby extension library? * LL(k)? (But it should not be called Racc) diff --git a/doc/ja/grammar.ja.rdoc b/doc/ja/grammar.ja.rdoc index c366130e..fd414a05 100644 --- a/doc/ja/grammar.ja.rdoc +++ b/doc/ja/grammar.ja.rdoc @@ -173,7 +173,7 @@ target: TERM_A nonterm_a TERM_B nonterm_b -- prechigh nonassoc PLUSPLUS - left MULTI DEVIDE + left MULTI DIVIDE left PLUS MINUS right '=' preclow diff --git a/sample/lists.y b/sample/lists.y index 195d4f76..f1757583 100644 --- a/sample/lists.y +++ b/sample/lists.y @@ -1,6 +1,6 @@ # # -# Rules for verious lists. +# Rules for various lists. # This file is just an example, you cannot compile this file. class ExampleOnly