diff options
author | Steve Klabnik <steve@steveklabnik.com> | 2013-03-16 16:32:26 -0700 |
---|---|---|
committer | Steve Klabnik <steve@steveklabnik.com> | 2013-03-16 16:32:28 -0700 |
commit | 077031691df0070be39a965a7eee07a9e5b1c4fe (patch) | |
tree | d2c0405b0a21d666e3a53f42b47352794e654a07 /guides/source | |
parent | feaa6e2048fe86bcf07e967d6e47b865e42e055b (diff) | |
download | rails-077031691df0070be39a965a7eee07a9e5b1c4fe.tar.gz rails-077031691df0070be39a965a7eee07a9e5b1c4fe.tar.bz2 rails-077031691df0070be39a965a7eee07a9e5b1c4fe.zip |
Getting Started Guide: typo fix. [ci skip]
There was an s missing in 'views'.
Fixes #9752.
Diffstat (limited to 'guides/source')
-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 a1864c123e..cd23b5ee15 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -568,7 +568,7 @@ interested in. We also use an instance variable (prefixed by `@`) to hold a reference to the post object. We do this because Rails will pass all instance variables to the view. -Now, create a new file `app/view/posts/show.html.erb` with the following +Now, create a new file `app/views/posts/show.html.erb` with the following content: ```html+erb |