1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

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

View file

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