Update laravel/documentation/views/html.md

The second parameter of HTML::style have to be an array, not a string.
This commit is contained in:
vauteer 2013-01-06 09:42:53 +01:00
parent 05cb1ea5ad
commit b0ac276d1a
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ #### Generating a reference to a CSS file:
#### Generating a reference to a CSS file using a given media type: #### Generating a reference to a CSS file using a given media type:
echo HTML::style('css/common.css', 'print'); echo HTML::style('css/common.css', array('media' => 'print'));
*Further Reading:* *Further Reading:*