From c50154fe3a6134f8f2f8da5db396cd5d8226cb02 Mon Sep 17 00:00:00 2001 From: Gudz Taras Date: Sun, 27 Oct 2013 12:23:26 +0300 Subject: [PATCH] Fixes issue #1078: Typo in comment --- framework/yii/bootstrap/ButtonGroup.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/yii/bootstrap/ButtonGroup.php b/framework/yii/bootstrap/ButtonGroup.php index 529c7ef293..4fc2eb3677 100644 --- a/framework/yii/bootstrap/ButtonGroup.php +++ b/framework/yii/bootstrap/ButtonGroup.php @@ -17,7 +17,7 @@ use yii\helpers\Html; * * ```php * // a button group with items configuration - * echo ButtonGroup::::widget([ + * echo ButtonGroup::widget([ * 'buttons' => [ * ['label' => 'A'], * ['label' => 'B'], @@ -25,7 +25,7 @@ use yii\helpers\Html; * ]); * * // button group with an item as a string - * echo ButtonGroup::::widget([ + * echo ButtonGroup::widget([ * 'buttons' => [ * Button::widget(['label' => 'A']), * ['label' => 'B'],