aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authororta <orta.therox@gmail.com>2011-03-14 12:37:43 +0000
committerdmathieu <42@dmathieu.com>2011-04-03 15:19:32 +0200
commit4c323bc25a69ba8fd8b080775335184fe6868747 (patch)
treebf6fb478dea9c30d365982b9993d16b5c1b28a16
parent9bf5cddd2835ba4f5d5597f421acf8c9f7385c3b (diff)
downloadrails-4c323bc25a69ba8fd8b080775335184fe6868747.tar.gz
rails-4c323bc25a69ba8fd8b080775335184fe6868747.tar.bz2
rails-4c323bc25a69ba8fd8b080775335184fe6868747.zip
added .'s to headings in the initialization textile page
-rw-r--r--railties/guides/source/initialization.textile5
1 files changed, 2 insertions, 3 deletions
diff --git a/railties/guides/source/initialization.textile b/railties/guides/source/initialization.textile
index 0cbbe1f389..7c01f01b24 100644
--- a/railties/guides/source/initialization.textile
+++ b/railties/guides/source/initialization.textile
@@ -478,8 +478,7 @@ The next line in +config/application.rb+ is:
require 'rails/all'
</ruby>
-h4 +railties/lib/rails/all.rb+
-
+h4. +railties/lib/rails/all.rb+
This file is responsible for requiring all the individual parts of Rails like so:
@@ -591,7 +590,7 @@ h4. +activesupport/lib/active_support/deprecation/behaviors.rb+
This file defines the behavior of the +ActiveSupport::Deprecation+ module, setting up the +DEFAULT_BEHAVIORS+ hash constant which contains the three defaults to outputting deprecation warnings: +:stderr+, +:log+ and +:notify+. This file begins by requiring +activesupport/notifications+ and +activesupport/core_ext/array/wrap+.
-h4 +activesupport/lib/active_support/notifications.rb+
+h4. +activesupport/lib/active_support/notifications.rb+
TODO: document +ActiveSupport::Notifications+.