aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rexml/dtd/attlistdecl.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rexml/dtd/attlistdecl.rb')
-rw-r--r--lib/rexml/dtd/attlistdecl.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/rexml/dtd/attlistdecl.rb b/lib/rexml/dtd/attlistdecl.rb
index e176bb0749..25955ee274 100644
--- a/lib/rexml/dtd/attlistdecl.rb
+++ b/lib/rexml/dtd/attlistdecl.rb
@@ -1,10 +1,10 @@
require "rexml/child"
module REXML
- module DTD
- class AttlistDecl < Child
- START = "<!ATTLIST"
- START_RE = /^\s*#{START}/um
- PATTERN_RE = /\s*(#{START}.*?>)/um
- end
- end
+ module DTD
+ class AttlistDecl < Child
+ START = "<!ATTLIST"
+ START_RE = /^\s*#{START}/um
+ PATTERN_RE = /\s*(#{START}.*?>)/um
+ end
+ end
end