aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Magana <raf.magana@gmail.com>2012-05-25 11:17:14 -0500
committerRafael Magana <raf.magana@gmail.com>2012-05-25 11:17:41 -0500
commit10f16e6e390f16979e2b8a26c8b98e286a17f152 (patch)
tree687956b2af8bbcd1c17d83595913822696930c41
parent4ce51e3d76f1d976d235d6be1c9252ef969ba423 (diff)
downloadrails-10f16e6e390f16979e2b8a26c8b98e286a17f152.tar.gz
rails-10f16e6e390f16979e2b8a26c8b98e286a17f152.tar.bz2
rails-10f16e6e390f16979e2b8a26c8b98e286a17f152.zip
[getting started] specify which kind of temporary files are stored in the /tmp folder
-rw-r--r--guides/source/getting_started.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.textile b/guides/source/getting_started.textile
index 35ae52e1d5..6ba70fa58e 100644
--- a/guides/source/getting_started.textile
+++ b/guides/source/getting_started.textile
@@ -138,7 +138,7 @@ application. Most of the work in this tutorial will happen in the +app/+ folder,
|README.rdoc|This is a brief instruction manual for your application. You should edit this file to tell others what your application does, how to set it up, and so on.|
|script/|Contains the rails script that starts your app and can contain other scripts you use to deploy or run your application.|
|test/|Unit tests, fixtures, and other test apparatus. These are covered in "Testing Rails Applications":testing.html|
-|tmp/|Temporary files|
+|tmp/|Temporary files (like cache, pid and session files)|
|vendor/|A place for all third-party code. In a typical Rails application, this includes Ruby Gems and the Rails source code (if you optionally install it into your project).|
h3. Hello, Rails!