From 58bf4c45ec3bd39e7cb2ae5a4ec425e87f095475 Mon Sep 17 00:00:00 2001 From: Ryan Bigg Date: Wed, 14 Mar 2012 11:34:15 -0700 Subject: [PATCH] [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 --- railties/guides/source/getting_started.textile | 6 +----- 1 file changed, 1 insertion(+), 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 -The 'rails new blog' command we ran above created a folder in your working directory -called blog. The blog 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 app/ 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 blog. The blog 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 app/ 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.| -- GitLab