From abb568b04c569e2515e093a7930a3eb62750aec3 Mon Sep 17 00:00:00 2001
From: Steve Klabnik <steve@steveklabnik.com>
Date: Sat, 17 Aug 2013 17:15:19 -0400
Subject: [PATCH] Nodoc a legacy constant in lib/rss/xmlparser.rb

---
 lib/rss/xmlparser.rb |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/rss/xmlparser.rb b/lib/rss/xmlparser.rb
index aa902be..6af157a 100644
--- a/lib/rss/xmlparser.rb
+++ b/lib/rss/xmlparser.rb
@@ -20,7 +20,8 @@ end
 module XML
   class Parser
     unless defined?(Error)
-      Error = ::XMLParserError
+      # This erorr is legacy, so we just set it to the new one
+      Error = ::XMLParserError # :nodoc:
     end
   end
 end
-- 
1.7.10.4

