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:
parent
af9c910db7
commit
a141d741b1
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue