From ee2f26507bdb60f61d425f3b4bdf7e25c1a01490 Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Sun, 20 Oct 2013 21:34:34 +0400 Subject: [PATCH] i18n doc typo fix --- docs/guide/i18n.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/i18n.md b/docs/guide/i18n.md index e44dc6b..de1c80d 100644 --- a/docs/guide/i18n.md +++ b/docs/guide/i18n.md @@ -205,7 +205,7 @@ Will produce "You are 42nd visitor here!". ```php -echo \Yii::t('app', 'You are here for {n, duration} already!', ['n' => 42]); +echo \Yii::t('app', 'You are here for {n, duration} already!', ['n' => 47]); ``` Will produce "You are here for 47 sec. already!".