diff options
author | Lauro Caetano <laurocaetano1@gmail.com> | 2013-12-12 15:14:49 -0800 |
---|---|---|
committer | Lauro Caetano <laurocaetano1@gmail.com> | 2013-12-12 15:14:49 -0800 |
commit | 17922930c384e22bb4b37523b1b5f4db2137c134 (patch) | |
tree | 4a03635eef281fddb23d1367c271d3db22ca6ab0 | |
parent | 81433addc2951457e7e201297ae3cd9e83a2affb (diff) | |
parent | 6353ea47464b708faaef01a27531915625b93439 (diff) | |
download | rails-17922930c384e22bb4b37523b1b5f4db2137c134.tar.gz rails-17922930c384e22bb4b37523b1b5f4db2137c134.tar.bz2 rails-17922930c384e22bb4b37523b1b5f4db2137c134.zip |
Merge pull request #13302 from afshinator/master
fix grammatical error
-rw-r--r-- | guides/source/getting_started.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index b57441b1c3..279a977f6f 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -398,7 +398,7 @@ If you refresh <http://localhost:3000/posts/new> now, you'll get a new error: This error indicates that Rails cannot find the `new` action inside the `PostsController` that you just generated. This is because when controllers are generated in Rails -they are empty by default, unless you tell it you wanted actions during the +they are empty by default, unless you tell it your wanted actions during the generation process. To manually define an action inside a controller, all you need to do is to |