diff options
author | प्रथमेश Sonpatki <csonpatki@gmail.com> | 2016-08-17 16:23:01 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-17 16:23:01 +0530 |
commit | 92de2ba8bc24d654d1c5966e06b624bd7eac2779 (patch) | |
tree | f2aca9ce41eaec2c656eb0f035b89d8352e21333 | |
parent | 6eee67318483c64bd864dc845550f27d45fa984c (diff) | |
parent | 9233f52bd96081c728b7087af9435d4fbadb7e46 (diff) | |
download | rails-92de2ba8bc24d654d1c5966e06b624bd7eac2779.tar.gz rails-92de2ba8bc24d654d1c5966e06b624bd7eac2779.tar.bz2 rails-92de2ba8bc24d654d1c5966e06b624bd7eac2779.zip |
Merge pull request #26188 from greenbigfrog/patch-2
Fix diffrent naming in getting_started.md
-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 0cb5d81042..ef469fccc3 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -1154,7 +1154,7 @@ new articles. Create a file called `app/views/articles/edit.html.erb` and make it look as follows: ```html+erb -<h1>Editing article</h1> +<h1>Edit article</h1> <%= form_for :article, url: article_path(@article), method: :patch do |f| %> |