aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authorTim Raymond <xtjraymondx@gmail.com>2013-01-05 18:56:27 -0500
committerTim Raymond <xtjraymondx@gmail.com>2013-01-05 18:56:27 -0500
commit09626e2ebaed9852a26b5572e3d27f4a154d6a05 (patch)
treecdd6f63e2dac74dc67c3f678f00f1aa6b3ad629b /guides/source/getting_started.md
parent0836b7441e21e5712bf2a69acf571a88317d03ca (diff)
downloadrails-09626e2ebaed9852a26b5572e3d27f4a154d6a05.tar.gz
rails-09626e2ebaed9852a26b5572e3d27f4a154d6a05.tar.bz2
rails-09626e2ebaed9852a26b5572e3d27f4a154d6a05.zip
The plural of apparatus is apparatuses
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 3fe74bd9ea..2dfd0f7e49 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -145,7 +145,7 @@ application. Most of the work in this tutorial will happen in the `app/` folder,
|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.|
|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)|
+|test/|Unit tests, fixtures, and other test apparatuses. These are covered in [Testing Rails Applications](testing.html)|
|tmp/|Temporary files (like cache, pid and session files)|
|vendor/|A place for all third-party code. In a typical Rails application, this includes Ruby Gems and the Rails source code (if you optionally install it into your project).|