diff options
author | Pepe Hipolito <jose.hipolito@gfi.com> | 2011-10-20 15:58:51 -0400 |
---|---|---|
committer | Pepe Hipolito <jose.hipolito@gfi.com> | 2011-10-20 15:58:51 -0400 |
commit | 0cd93a6e2bbcdd2ead0d6e4b739dfd8def04d8d5 (patch) | |
tree | e0648bc6accde7882a6a40fa68ccfc7729366b75 /railties/guides/source/initialization.textile | |
parent | 48e1f8ba4c02ed81ba70fee459de8bc569197fc4 (diff) | |
download | rails-0cd93a6e2bbcdd2ead0d6e4b739dfd8def04d8d5.tar.gz rails-0cd93a6e2bbcdd2ead0d6e4b739dfd8def04d8d5.tar.bz2 rails-0cd93a6e2bbcdd2ead0d6e4b739dfd8def04d8d5.zip |
Fixed typo.
Ruby will know to look for this file at => Ruby will know how to look for this file at
Diffstat (limited to 'railties/guides/source/initialization.textile')
-rw-r--r-- | railties/guides/source/initialization.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/initialization.textile b/railties/guides/source/initialization.textile index 2299573a9f..f88405a2fd 100644 --- a/railties/guides/source/initialization.textile +++ b/railties/guides/source/initialization.textile @@ -243,7 +243,7 @@ In this file there are a lot of lines such as this inside the +ActiveSupport+ mo autoload :Inflector </ruby> -Due to the overriding of the +autoload+ method, Ruby will know to look for this file at +activesupport/lib/active_support/inflector.rb+ when the +Inflector+ class is first referenced. +Due to the overriding of the +autoload+ method, Ruby will know how to look for this file at +activesupport/lib/active_support/inflector.rb+ when the +Inflector+ class is first referenced. The +active_support/lib/active_support/version.rb+ that is also required here simply defines an +ActiveSupport::VERSION+ constant which defines a couple of constants inside this module, the main constant of this is +ActiveSupport::VERSION::STRING+ which returns the current version of ActiveSupport. |