aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorAnthony Crumley <anthony.crumley@gmail.com>2018-04-30 16:13:39 -0500
committerAnthony Crumley <anthony.crumley@gmail.com>2018-04-30 16:13:39 -0500
commit7549f830a2b5e2ae7fcfc8f471551f0be0922cca (patch)
tree27ebe8bae75c7b21f334c2d4a5d58c27be202c01 /guides
parent5909cdb9625ce92ccee8dae534ab175c4f6efe00 (diff)
downloadrails-7549f830a2b5e2ae7fcfc8f471551f0be0922cca.tar.gz
rails-7549f830a2b5e2ae7fcfc8f471551f0be0922cca.tar.bz2
rails-7549f830a2b5e2ae7fcfc8f471551f0be0922cca.zip
Fix an oxford comma
[ci skip]
Diffstat (limited to 'guides')
-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 9dab7a9d6f..c1e4e443ed 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -167,7 +167,7 @@ of the files and folders that Rails created by default:
| File/Folder | Purpose |
| ----------- | ------- |
-|app/|Contains the controllers, models, views, helpers, mailers, channels, jobs and assets for your application. You'll focus on this folder for the remainder of this guide.|
+|app/|Contains the controllers, models, views, helpers, mailers, channels, jobs, and assets for your application. You'll focus on this folder for the remainder of this guide.|
|bin/|Contains the rails script that starts your app and can contain other scripts you use to setup, update, deploy, or run your application.|
|config/|Configure your application's routes, database, and more. This is covered in more detail in [Configuring Rails Applications](configuring.html).|
|config.ru|Rack configuration for Rack based servers used to start the application. For more information about Rack, see the [Rack website](https://rack.github.io/).|