aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorFrancis Go <francis.go@gmail.com>2016-05-12 00:17:17 +1000
committerFrancis Go <francis.go@gmail.com>2016-05-12 00:17:17 +1000
commit886bd9df9570a32705225796bbccd98279966aa5 (patch)
tree86a04611f4368c7e086683e112427036d265d43d /guides
parent733161d48b4292c8731c35eaa20131a49c5a5b9a (diff)
downloadrails-886bd9df9570a32705225796bbccd98279966aa5.tar.gz
rails-886bd9df9570a32705225796bbccd98279966aa5.tar.bz2
rails-886bd9df9570a32705225796bbccd98279966aa5.zip
Getting Started Guide: Add channels and jobs to app purpose table [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 b1bce0f043..95080570d0 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -164,7 +164,7 @@ of the files and folders that Rails created by default:
| File/Folder | Purpose |
| ----------- | ------- |
-|app/|Contains the controllers, models, views, helpers, mailers 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.|