diff options
author | John Kelly Ferguson <hello@johnkellyferguson.com> | 2014-05-25 18:48:14 -0400 |
---|---|---|
committer | John Kelly Ferguson <hello@johnkellyferguson.com> | 2014-05-25 18:48:14 -0400 |
commit | 45072f34d27bda34b182f14f8b02d778d1648cce (patch) | |
tree | 66a21875edf8908997ba28f63a8d32f8cedd2a0b /guides/code/getting_started/app/views/welcome | |
parent | 6c30717f8c182dc05f63779b3a9a532fb9076b05 (diff) | |
download | rails-45072f34d27bda34b182f14f8b02d778d1648cce.tar.gz rails-45072f34d27bda34b182f14f8b02d778d1648cce.tar.bz2 rails-45072f34d27bda34b182f14f8b02d778d1648cce.zip |
Rename Posts to Articles in Guides' Getting Started App, continuation of #15215 [ci skip]
Diffstat (limited to 'guides/code/getting_started/app/views/welcome')
-rw-r--r-- | guides/code/getting_started/app/views/welcome/index.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/code/getting_started/app/views/welcome/index.html.erb b/guides/code/getting_started/app/views/welcome/index.html.erb index 56be8dd3cc..1cabd0d217 100644 --- a/guides/code/getting_started/app/views/welcome/index.html.erb +++ b/guides/code/getting_started/app/views/welcome/index.html.erb @@ -1,4 +1,4 @@ <h1>Hello, Rails!</h1> -<%= link_to "My Blog", controller: "posts" %> -<%= link_to "New Post", new_post_path %> +<%= link_to "My Blog", controller: "articles" %> +<%= link_to "New Article", new_article_path %> |