aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-06-24 16:09:10 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-06-24 16:09:10 -0300
commit119f27c519d1fbfe47fa266fde50eec47ab56aaa (patch)
tree6de62b550d8ab0ce9f52a028aaf2e741f63514fd /railties
parent5009b078875e596a2fba7827336f7548aa6e35ac (diff)
downloadrails-119f27c519d1fbfe47fa266fde50eec47ab56aaa.tar.gz
rails-119f27c519d1fbfe47fa266fde50eec47ab56aaa.tar.bz2
rails-119f27c519d1fbfe47fa266fde50eec47ab56aaa.zip
Fix textile markup
Closes #11076 [ci skip]
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/initialization.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/initialization.textile b/railties/guides/source/initialization.textile
index 5ae9cf0f2b..7d768fca19 100644
--- a/railties/guides/source/initialization.textile
+++ b/railties/guides/source/initialization.textile
@@ -383,7 +383,7 @@ ensure
end
</ruby>
-This is where the first output of the Rails initialization happens. This method creates a trap for +INT+ signals, so if you +CTRL+C+ the server, it will exit the process. As we can see from the code here, it will create the +tmp/cache+, +tmp/pids+, +tmp/sessions+ and +tmp/sockets+ directories if they don't already exist prior to calling +super+. The +super+ method will call +Rack::Server.start+ which begins its definition like this:
+This is where the first output of the Rails initialization happens. This method creates a trap for +INT+ signals, so if you <tt>CTRL+C</tt> the server, it will exit the process. As we can see from the code here, it will create the +tmp/cache+, +tmp/pids+, +tmp/sessions+ and +tmp/sockets+ directories if they don't already exist prior to calling +super+. The +super+ method will call +Rack::Server.start+ which begins its definition like this:
<ruby>
def start