From f1a317b8e9f249294fc736ed19d0e5894c5e4ce6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Sat, 21 Jul 2012 14:05:19 -0300 Subject: Lets be consistent with whitespaces at documentation --- .../active_support/hash_with_indifferent_access.rb | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'activesupport/lib/active_support') diff --git a/activesupport/lib/active_support/hash_with_indifferent_access.rb b/activesupport/lib/active_support/hash_with_indifferent_access.rb index 1b8ea12ba8..c807c96da6 100644 --- a/activesupport/lib/active_support/hash_with_indifferent_access.rb +++ b/activesupport/lib/active_support/hash_with_indifferent_access.rb @@ -3,31 +3,31 @@ require 'active_support/core_ext/hash/keys' module ActiveSupport # Implements a hash where keys +:foo+ and +"foo"+ are considered to be the same. # - # rgb = ActiveSupport::HashWithIndifferentAccess.new + # rgb = ActiveSupport::HashWithIndifferentAccess.new # - # rgb[:black] = '#000000' - # rgb[:black] # => '#000000' - # rgb['black'] # => '#000000' + # rgb[:black] = '#000000' + # rgb[:black] # => '#000000' + # rgb['black'] # => '#000000' # - # rgb['white'] = '#FFFFFF' - # rgb[:white] # => '#FFFFFF' - # rgb['white'] # => '#FFFFFF' + # rgb['white'] = '#FFFFFF' + # rgb[:white] # => '#FFFFFF' + # rgb['white'] # => '#FFFFFF' # # Internally symbols are mapped to strings when used as keys in the entire # writing interface (calling []=, merge, etc). This # mapping belongs to the public interface. For example, given # - # hash = ActiveSupport::HashWithIndifferentAccess.new(:a => 1) + # hash = ActiveSupport::HashWithIndifferentAccess.new(:a => 1) # # you are guaranteed that the key is returned as a string: # - # hash.keys # => ["a"] + # hash.keys # => ["a"] # # Technically other types of keys are accepted: # - # hash = ActiveSupport::HashWithIndifferentAccess.new(:a => 1) - # hash[0] = 0 - # hash # => {"a"=>1, 0=>0} + # hash = ActiveSupport::HashWithIndifferentAccess.new(:a => 1) + # hash[0] = 0 + # hash # => {"a"=>1, 0=>0} # # but this class is intended for use cases where strings or symbols are the # expected keys and it is convenient to understand both as the same. For @@ -35,7 +35,7 @@ module ActiveSupport # # Note that core extensions define Hash#with_indifferent_access: # - # rgb = {:black => '#000000', :white => '#FFFFFF'}.with_indifferent_access + # rgb = {:black => '#000000', :white => '#FFFFFF'}.with_indifferent_access # # which may be handy. class HashWithIndifferentAccess < Hash -- cgit v1.2.3