diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2012-03-14 11:34:15 -0700 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2012-03-14 11:34:37 -0700 |
commit | 58bf4c45ec3bd39e7cb2ae5a4ec425e87f095475 (patch) | |
tree | f86041f46a71a217f97c8a6e5e978f1db3a83db5 /railties/guides/source/getting_started.textile | |
parent | 5013f51348ee8467e88a74d43da167c2d5d85b39 (diff) | |
download | rails-58bf4c45ec3bd39e7cb2ae5a4ec425e87f095475.tar.gz rails-58bf4c45ec3bd39e7cb2ae5a4ec425e87f095475.tar.bz2 rails-58bf4c45ec3bd39e7cb2ae5a4ec425e87f095475.zip |
[getting started] fix lines that are too short.
This should be a configuration setting on your text editor, rather than hard-coded into the guide
Diffstat (limited to 'railties/guides/source/getting_started.textile')
-rw-r--r-- | railties/guides/source/getting_started.textile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index 064e88da0a..8c131b2d70 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -121,11 +121,7 @@ directly in that application: $ cd blog </shell> -The 'rails new blog' command we ran above created a folder in your working directory -called <tt>blog</tt>. The <tt>blog</tt> folder has a number of auto-generated folders -that make up the structure of a Rails application. Most of the work in -this tutorial will happen in the <tt>app/</tt> folder, but here's a basic -rundown on the function of each of the files and folders that Rails created by default: +The +rails new blog+ command we ran above created a folder in your working directory called <tt>blog</tt>. The <tt>blog</tt> directory has a number of auto-generated folders that make up the structure of a Rails application. Most of the work in this tutorial will happen in the <tt>app/</tt> folder, but here's a basic rundown on the function of each of the files and folders that Rails created by default: |_.File/Folder|_.Purpose| |app/|Contains the controllers, models, views and assets for your application. You'll focus on this folder for the remainder of this guide.| |