Skip to content

Commit

Permalink
Fix a typo in missing_exact_template.html.erb
Browse files Browse the repository at this point in the history
  • Loading branch information
byroot committed Oct 31, 2022
1 parent 2612b88 commit cfa9c9f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -11,7 +11,7 @@
</p>
<p>
For example, a <code>BooksController#index</code> action defined in <code>app/controller/books_controller.rb</code> should have a corresponding view template
in a file named <code>app/views/books/index.erb.html</code>.
in a file named <code>app/views/books/index.html.erb</code>.
</p>
<p>
However, if this controller is an API endpoint responding with 204 (No Content), which does not require a view template because it doesn't serve an HTML response, then this error will occur when trying to access it with a browser. In this particular scenario, you can ignore this error.
Expand Down

0 comments on commit cfa9c9f

Please sign in to comment.