diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2014-05-21 22:18:57 -0500 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2014-05-21 22:18:57 -0500 |
commit | 88a3a5db5ef0d38e1d4a6464f1d0fbc28a990aac (patch) | |
tree | b1b7d6e6d9fb411281453708ec09adc28b46152e /guides/source/contributing_to_ruby_on_rails.md | |
parent | 2fb2913b35c4a706f0207119ab0b3e89f61546a1 (diff) | |
parent | d02c810e29080389ab26313ae75556081aa9ac63 (diff) | |
download | rails-88a3a5db5ef0d38e1d4a6464f1d0fbc28a990aac.tar.gz rails-88a3a5db5ef0d38e1d4a6464f1d0fbc28a990aac.tar.bz2 rails-88a3a5db5ef0d38e1d4a6464f1d0fbc28a990aac.zip |
Merge pull request #15215 from JohnKellyFerguson/rename-posts-to-articles
Documentation: Rename Posts to Articles
Diffstat (limited to 'guides/source/contributing_to_ruby_on_rails.md')
-rw-r--r-- | guides/source/contributing_to_ruby_on_rails.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/contributing_to_ruby_on_rails.md b/guides/source/contributing_to_ruby_on_rails.md index ef4633ac1a..d3a96daf7b 100644 --- a/guides/source/contributing_to_ruby_on_rails.md +++ b/guides/source/contributing_to_ruby_on_rails.md @@ -361,9 +361,9 @@ it should not be necessary to visit a webpage to check the history. Description can have multiple paragraphs and you can use code examples inside, just indent it with 4 spaces: - class PostsController + class ArticlesController def index - respond_with Post.limit(10) + respond_with Article.limit(10) end end |