Fix code comment

This commit is contained in:
Ryunosuke SATO 2013-03-22 18:14:10 +09:00
parent 63a13e1e66
commit f7f281de39

View file

@ -61,7 +61,7 @@ module Middleman
# #
# @param [Symbol] name Name of the data, used for namespacing # @param [Symbol] name Name of the data, used for namespacing
# @param [Hash] content The content for this data # @param [Hash] content The content for this data
# @return [void] # @return [Hash]
def store(name=nil, content=nil) def store(name=nil, content=nil)
@_local_sources ||= {} @_local_sources ||= {}
@_local_sources[name.to_s] = content unless name.nil? || content.nil? @_local_sources[name.to_s] = content unless name.nil? || content.nil?
@ -72,7 +72,7 @@ module Middleman
# #
# @param [Symbol] name Name of the data, used for namespacing # @param [Symbol] name Name of the data, used for namespacing
# @param [Proc] proc The callback which will return data # @param [Proc] proc The callback which will return data
# @return [void] # @return [Hash]
def callbacks(name=nil, proc=nil) def callbacks(name=nil, proc=nil)
@_callback_sources ||= {} @_callback_sources ||= {}
@_callback_sources[name.to_s] = proc unless name.nil? || proc.nil? @_callback_sources[name.to_s] = proc unless name.nil? || proc.nil?
@ -117,7 +117,7 @@ module Middleman
@local_data.delete(basename) if @local_data.has_key?(basename) @local_data.delete(basename) if @local_data.has_key?(basename)
end end
# Get a hash hash from either internal static data or a callback # Get a hash from either internal static data or a callback
# #
# @param [String, Symbol] path The name of the data namespace # @param [String, Symbol] path The name of the data namespace
# @return [Hash, nil] # @return [Hash, nil]