aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Noble & Ralph Shnelvar <perlwizard@gmail.com>2011-07-24 16:36:50 -0600
committerJason Noble & Ralph Shnelvar <perlwizard@gmail.com>2011-07-24 16:37:27 -0600
commit0076a6fce2b037d6be0c0e8c26b769e66f7dbfee (patch)
tree7591ec8e0f0744a5d1bb4505f662ae8da01c2bff
parent1ca4990a1028c1c3531819fa50b7f3c07eb32aca (diff)
downloadrails-0076a6fce2b037d6be0c0e8c26b769e66f7dbfee.tar.gz
rails-0076a6fce2b037d6be0c0e8c26b769e66f7dbfee.tar.bz2
rails-0076a6fce2b037d6be0c0e8c26b769e66f7dbfee.zip
Fix two spaces after end of sentence.
-rw-r--r--railties/guides/source/getting_started.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile
index a44222a441..0b89021392 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -535,9 +535,9 @@ command in your terminal:
$ rails generate scaffold Post name:string title:string content:text
</shell>
-This will create a new database table called posts (plural of Post). The table
+This will create a new database table called posts (plural of Post). The table
will have three columns, name (type string), title (type string) and content
-(type text). It will also hook this new database up to Rails (details below).
+(type text). It will also hook this new database up to Rails (details below).
NOTE. While scaffolding will get you up and running quickly, the code it
generates is unlikely to be a perfect fit for your application. You'll most