aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authorMatthew Conway <himself@mattonrails.com>2015-12-20 22:06:22 -0800
committerMatthew Conway <himself@mattonrails.com>2015-12-20 22:06:22 -0800
commit748257234737e081d5189a5a2642c551fa2cac91 (patch)
treed104ff0c0e1ad1dbffdd9cab5a8b9bcbe112b082 /guides/source/getting_started.md
parent615f93d314f23a2c6a616273a65c3ad567b89e66 (diff)
downloadrails-748257234737e081d5189a5a2642c551fa2cac91.tar.gz
rails-748257234737e081d5189a5a2642c551fa2cac91.tar.bz2
rails-748257234737e081d5189a5a2642c551fa2cac91.zip
Update README extension in Getting Started guide
Generated Rails app READMEs are Markdown as of 9739f07d763e29b1c5d71cabf1ca8cfa4421e653
Diffstat (limited to 'guides/source/getting_started.md')
-rw-r--r--guides/source/getting_started.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index d8b590dba1..97c5f8b15d 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -173,7 +173,7 @@ of the files and folders that Rails created by default:
|log/|Application log files.|
|public/|The only folder seen by the world as-is. Contains 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.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.|
+|README.md|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.|
|test/|Unit tests, fixtures, and other test apparatus. These are covered in [Testing Rails Applications](testing.html).|
|tmp/|Temporary files (like cache and pid files).|
|vendor/|A place for all third-party code. In a typical Rails application this includes vendored gems.|