Fix doc: stylesheet_include_tag -> stylesheet_link_tag

This commit is contained in:
André Luis Leal Cardoso Junior 2021-01-23 12:45:21 -03:00
parent af9c910db7
commit a141d741b1
1 changed files with 2 additions and 2 deletions

View File

@ -362,13 +362,13 @@ For example, the following escaped ERB tag would be needed in the template
(note the extra `%`)...
```erb
<%%= stylesheet_include_tag :application %>
<%%= stylesheet_link_tag :application %>
```
...to generate the following output:
```erb
<%= stylesheet_include_tag :application %>
<%= stylesheet_link_tag :application %>
```
Adding Generators Fallbacks