diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2016-08-17 09:30:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-17 09:30:56 -0400 |
commit | f857e1fd8c5bf74fd1d4449e8336a262630e217e (patch) | |
tree | 160dcaf59a153c814f8ab624659ee3f9d530dc07 | |
parent | 92de2ba8bc24d654d1c5966e06b624bd7eac2779 (diff) | |
parent | ce17ac27736efb3c5b9c9532f0d4388f3164dad8 (diff) | |
download | rails-f857e1fd8c5bf74fd1d4449e8336a262630e217e.tar.gz rails-f857e1fd8c5bf74fd1d4449e8336a262630e217e.tar.bz2 rails-f857e1fd8c5bf74fd1d4449e8336a262630e217e.zip |
Merge pull request #26192 from greenbigfrog/patch-2
Fix #26187
-rw-r--r-- | guides/source/getting_started.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index ef469fccc3..d56b817bad 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -353,6 +353,7 @@ resource. You need to add the _article resource_ to the ```ruby Rails.application.routes.draw do + get 'welcome/index' resources :articles |