diff options
author | Jonathan <greenbigfrog@gmail.com> | 2016-08-17 12:49:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-17 12:49:56 +0200 |
commit | 9233f52bd96081c728b7087af9435d4fbadb7e46 (patch) | |
tree | f2aca9ce41eaec2c656eb0f035b89d8352e21333 /guides | |
parent | 6eee67318483c64bd864dc845550f27d45fa984c (diff) | |
download | rails-9233f52bd96081c728b7087af9435d4fbadb7e46.tar.gz rails-9233f52bd96081c728b7087af9435d4fbadb7e46.tar.bz2 rails-9233f52bd96081c728b7087af9435d4fbadb7e46.zip |
Fix diffrent naming in getting_started.md
I've noticed that once `<h1>Editing article</h1>` L1157 was the title and then later on it's `<h1>Edit article</h1>` L1358 which kind of makes more sense...
[ci skip]
Diffstat (limited to 'guides')
-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| %> |