From f39415cda5f1a9a0c39c5222224f1ac3044c45af Mon Sep 17 00:00:00 2001 From: Qiang Xue Date: Fri, 15 Nov 2013 10:15:25 -0500 Subject: [PATCH] array syntax fix. --- Progress.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Progress.php b/Progress.php index ed2d37d..184451c 100644 --- a/Progress.php +++ b/Progress.php @@ -48,7 +48,7 @@ use yii\helpers\Html; * 'bars' => [ * ['percent' => 30, 'options' => ['class' => 'bar-danger']], * ['percent' => 30, 'label' => 'test', 'options' => ['class' => 'bar-success']], - * ['percent' => 35, 'options' => array['class' => 'bar-warning']], + * ['percent' => 35, 'options' => ['class' => 'bar-warning']], * ] * ]); * ```