1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/rss/maker.rb (RSS::Maker): Fix indent of document comment.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40480 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kou 2013-04-26 12:21:45 +00:00
parent 56e982d447
commit 2df0d9a181
2 changed files with 8 additions and 4 deletions

View file

@ -1,3 +1,7 @@
Fri Apr 26 21:21:17 2013 Kouhei Sutou <kou@cozmixng.org>
* lib/rss/maker.rb (RSS::Maker): Fix indent of document comment.
Fri Apr 26 18:41:04 2013 Tanaka Akira <akr@fsij.org> Fri Apr 26 18:41:04 2013 Tanaka Akira <akr@fsij.org>
* ext/socket/extconf.rb: Use a block of enable_config() for * ext/socket/extconf.rb: Use a block of enable_config() for

View file

@ -20,10 +20,10 @@ module RSS
MAKERS = {} MAKERS = {}
class << self class << self
# Builder for an RSS object # Builder for an RSS object
# Creates an object of the type passed in +args+ # Creates an object of the type passed in +args+
# #
# Executes the +block+ to populate elements of the created RSS object # Executes the +block+ to populate elements of the created RSS object
def make(version, &block) def make(version, &block)
self[version].make(&block) self[version].make(&block)
end end