summaryrefslogtreecommitdiff
path: root/lib/yaml.rb
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-23 18:16:08 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-23 18:16:08 +0000
commit563b6544378236252898f7489a336bd25890cfe7 (patch)
treeb80bbf5dc24569ce41091af900231ead3a8de967 /lib/yaml.rb
parentf3ba845deb749e9915bbba7e4b0d2de4ab424490 (diff)
Fix ruby -w warnings for mismatched indentation discovered by rdoc
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19495 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/yaml.rb')
-rw-r--r--lib/yaml.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/yaml.rb b/lib/yaml.rb
index a8da42a321..12853401c1 100644
--- a/lib/yaml.rb
+++ b/lib/yaml.rb
@@ -213,7 +213,7 @@ module YAML
# end
# end
#
- def YAML.each_document( io, &block )
+ def YAML.each_document( io, &block )
yp = parser.load_documents( io, &block )
end
@@ -228,7 +228,7 @@ module YAML
# end
# end
#
- def YAML.load_documents( io, &doc_proc )
+ def YAML.load_documents( io, &doc_proc )
YAML.each_document( io, &doc_proc )
end
@@ -243,7 +243,7 @@ module YAML
# end
# end
#
- def YAML.each_node( io, &doc_proc )
+ def YAML.each_node( io, &doc_proc )
yp = generic_parser.load_documents( io, &doc_proc )
end
@@ -258,7 +258,7 @@ module YAML
# end
# end
#
- def YAML.parse_documents( io, &doc_proc )
+ def YAML.parse_documents( io, &doc_proc )
YAML.each_node( io, &doc_proc )
end