From f08a6c6f101490b0bba2d13b67fec37edefe833c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anderson=20M=C3=BCller?= Date: Tue, 31 Dec 2013 10:31:56 +0100 Subject: [PATCH 1/2] Doc fix --- docs/guide/view.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/view.md b/docs/guide/view.md index a20acf3..d663f79 100644 --- a/docs/guide/view.md +++ b/docs/guide/view.md @@ -197,8 +197,8 @@ body { background: #f00; } ``` -If you want to specify additional properties of the style tag, pass an array of name-values to the second argument. -If you need to make sure there's only a single style tag use third argument as was mentioned in meta tags description. +If you want to specify additional properties of the style tag, pass an array of name-values to the third argument. +If you need to make sure there's only a single style tag use forth argument as was mentioned in meta tags description. ```php $this->registerCssFile("http://example.com/css/themes/black-and-white.css", [BootstrapAsset::className()], ['media' => 'print'], 'css-print-theme'); From 82c54bb20468f7725cfa4ac825bc28f329ac738c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anderson=20M=C3=BCller?= Date: Tue, 31 Dec 2013 10:33:58 +0100 Subject: [PATCH 2/2] Typo --- docs/guide/view.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/view.md b/docs/guide/view.md index d663f79..1c04b99 100644 --- a/docs/guide/view.md +++ b/docs/guide/view.md @@ -198,7 +198,7 @@ body { background: #f00; } ``` If you want to specify additional properties of the style tag, pass an array of name-values to the third argument. -If you need to make sure there's only a single style tag use forth argument as was mentioned in meta tags description. +If you need to make sure there's only a single style tag use fourth argument as was mentioned in meta tags description. ```php $this->registerCssFile("http://example.com/css/themes/black-and-white.css", [BootstrapAsset::className()], ['media' => 'print'], 'css-print-theme');