提交 3fdd5f51 编写于 作者: V Vincent Voyer 提交者: Xavier Noria

Fix inconsistent capitalization of Article in getting started

In the getting started, we're asked to add `"<h1>New Article</h1>"`
while later on in the guide it is referenced as `"<h1>New article</h1>"`

This pull request aims at fixing this small inconsistency.

[ci skip]
上级 ed186ace
......@@ -904,7 +904,7 @@ And then finally, add the view for this action, located at
`app/views/articles/index.html.erb`:
```html+erb
<h1>Listing articles</h1>
<h1>Listing Articles</h1>
<table>
<tr>
......@@ -1157,7 +1157,7 @@ new articles. Create a file called `app/views/articles/edit.html.erb` and make
it look as follows:
```html+erb
<h1>Edit article</h1>
<h1>Edit Article</h1>
<%= form_with(model: @article, local: true) do |form| %>
......@@ -1349,7 +1349,7 @@ Now, let's update the `app/views/articles/new.html.erb` view to use this new
partial, rewriting it completely:
```html+erb
<h1>New article</h1>
<h1>New Article</h1>
<%= render 'form' %>
......@@ -1359,7 +1359,7 @@ partial, rewriting it completely:
Then do the same for the `app/views/articles/edit.html.erb` view:
```html+erb
<h1>Edit article</h1>
<h1>Edit Article</h1>
<%= render 'form' %>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册