From ff92af3f0b544af2bac570b38e721d1674674f86 Mon Sep 17 00:00:00 2001 From: Sergey Gonimar Date: Thu, 21 Nov 2013 19:43:10 +0500 Subject: [PATCH] Fix doc --- framework/yii/base/View.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/yii/base/View.php b/framework/yii/base/View.php index 61d9373..3eee4ef 100644 --- a/framework/yii/base/View.php +++ b/framework/yii/base/View.php @@ -356,10 +356,10 @@ class View extends Component /** * Begins the rendering of content that is to be decorated by the specified view. * This method can be used to implement nested layout. For example, a layout can be embedded - * in another layout file specified as '@app/view/layouts/base.php' like the following: + * in another layout file specified as '@app/views/layouts/base.php' like the following: * * ~~~ - * beginContent('@app/view/layouts/base.php'); ?> + * beginContent('@app/views/layouts/base.php'); ?> * ...layout content here... * endContent(); ?> * ~~~