From 620047cef133c52be29b86048409c9b556a65fb5 Mon Sep 17 00:00:00 2001 From: Luciano Baraglia Date: Wed, 11 Jun 2014 23:29:01 -0300 Subject: [PATCH] Typo in guide [skip ci] --- docs/guide/intro-upgrade-from-v1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/intro-upgrade-from-v1.md b/docs/guide/intro-upgrade-from-v1.md index 7929b2c31d..c74085008f 100644 --- a/docs/guide/intro-upgrade-from-v1.md +++ b/docs/guide/intro-upgrade-from-v1.md @@ -158,7 +158,7 @@ Views The most significant change about views in Yii 2 is that the special variable `$this` in a view no longer refers to the current controller or widget. Instead, `$this` now refers to a *view* object, a new concept introduced in 2.0. The *view* object is of type [[yii\web\View]], which represents the view part -of the MVC pattern. In you want to access the controller or widget in a view, you can use `$this->context`. +of the MVC pattern. If you want to access the controller or widget in a view, you can use `$this->context`. To render a partial view within another view, you use `$this->render()`, not `$this->renderPartial()`. The call to `render` also now has to be explicitly echoed, as the `render()` method returns the rendering result, rather than directly displaying it. For example: