summaryrefslogtreecommitdiff
path: root/lib/racc
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2022-05-13 16:01:36 +0900
committergit <svn-admin@ruby-lang.org>2022-05-16 12:24:10 +0900
commit774b9e27ae22ff54daef434827c449050c89c951 (patch)
tree5a0f5165afc429c5973be339bf8a38a492a399b4 /lib/racc
parent105609d382ecb91ed8aefa2b28752f17e1fe4b07 (diff)
downloadruby-774b9e27ae22ff54daef434827c449050c89c951.tar.gz
[ruby/racc] [DOC] Remove stale `Object::ParseError` documentation
https://github.com/ruby/racc/commit/4ecc13c9cb
Diffstat (limited to 'lib/racc')
-rw-r--r--lib/racc/parser.rb2
1 files changed, 1 insertions, 1 deletions
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.