summaryrefslogtreecommitdiff
path: root/lib/rexml/dtd/notationdecl.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rexml/dtd/notationdecl.rb')
-rw-r--r--lib/rexml/dtd/notationdecl.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rexml/dtd/notationdecl.rb b/lib/rexml/dtd/notationdecl.rb
index eae71f2e52..17d1b9ef29 100644
--- a/lib/rexml/dtd/notationdecl.rb
+++ b/lib/rexml/dtd/notationdecl.rb
@@ -32,7 +32,7 @@ module REXML
def NotationDecl.parse_source source, listener
md = source.match( PATTERN_RE, true )
thing = md[0].squeeze(" \t\n\r")
- listener.send inspect.downcase, thing
+ listener.send inspect.downcase, thing
end
end
end