aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/getting_started.textile
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2011-12-10 02:10:18 +0100
committerXavier Noria <fxn@hashref.com>2011-12-10 02:10:18 +0100
commit3e5592848ac7fd58608e3f6c42778a2feb53788f (patch)
tree075391efdbb458dd0b5f457ca4f748f7b231f8f6 /railties/guides/source/getting_started.textile
parentefed2d56e22069fc142016f398625588684ce008 (diff)
downloadrails-3e5592848ac7fd58608e3f6c42778a2feb53788f.tar.gz
rails-3e5592848ac7fd58608e3f6c42778a2feb53788f.tar.bz2
rails-3e5592848ac7fd58608e3f6c42778a2feb53788f.zip
revises some stuff that was out of sync with the recent generated README.rdoc
Diffstat (limited to 'railties/guides/source/getting_started.textile')
-rw-r--r--railties/guides/source/getting_started.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile
index fe43c9db36..774c6a792e 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -289,7 +289,7 @@ rundown on the function of each of the files and folders that Rails created by d
|log/|Application log files.|
|public/|The only folder seen to the world as-is. Contains the static files and compiled assets.|
|Rakefile|This file locates and loads tasks that can be run from the command line. The task definitions are defined throughout the components of Rails. Rather than changing Rakefile, you should add your own tasks by adding files to the lib/tasks directory of your application.|
-|README|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.|
+|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|