From 774b9e27ae22ff54daef434827c449050c89c951 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Fri, 13 May 2022 16:01:36 +0900 Subject: [PATCH] [ruby/racc] [DOC] Remove stale `Object::ParseError` documentation https://github.com/ruby/racc/commit/4ecc13c9cb --- lib/racc/parser.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/racc/parser.rb b/lib/racc/parser.rb index 4237fb572c..078bfef3e9 100644 --- a/lib/racc/parser.rb +++ b/lib/racc/parser.rb @@ -20,7 +20,7 @@ module Racc class ParseError < StandardError; end end unless defined?(::ParseError) - ParseError = Racc::ParseError + ParseError = Racc::ParseError # :nodoc: end # Racc is a LALR(1) parser generator.