diff options
| author | drbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-23 18:16:08 +0000 |
|---|---|---|
| committer | drbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-23 18:16:08 +0000 |
| commit | faaedc63a7ac5e82f0ca494f4661a04192fe63c0 (patch) | |
| tree | b80bbf5dc24569ce41091af900231ead3a8de967 /lib/yaml.rb | |
| parent | 752311d5885a3e93f2f84c10dea6f393475b14fe (diff) | |
| download | ruby-faaedc63a7ac5e82f0ca494f4661a04192fe63c0.tar.gz ruby-faaedc63a7ac5e82f0ca494f4661a04192fe63c0.tar.xz ruby-faaedc63a7ac5e82f0ca494f4661a04192fe63c0.zip | |
Fix ruby -w warnings for mismatched indentation discovered by rdoc
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19495 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/yaml.rb')
| -rw-r--r-- | lib/yaml.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/yaml.rb b/lib/yaml.rb index a8da42a32..12853401c 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 |
