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