From 563b6544378236252898f7489a336bd25890cfe7 Mon Sep 17 00:00:00 2001 From: drbrain Date: Tue, 23 Sep 2008 18:16:08 +0000 Subject: 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 --- lib/yaml.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/yaml.rb') 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 -- cgit v1.2.3