From 90f77a713486d7d89f10675310af748a8816a13e Mon Sep 17 00:00:00 2001 From: Martin Portevin Date: Sat, 10 Feb 2018 03:05:59 +0100 Subject: [PATCH] Removed bad quote --- docs/en/02_Developer_Guides/13_i18n/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/02_Developer_Guides/13_i18n/index.md b/docs/en/02_Developer_Guides/13_i18n/index.md index a4db8a2c3..9cd295db6 100644 --- a/docs/en/02_Developer_Guides/13_i18n/index.md +++ b/docs/en/02_Developer_Guides/13_i18n/index.md @@ -263,7 +263,7 @@ _t('CMSMain.RESTORED', ); // Plurals are invoked via a `|` pipe-delimeter with a {count} argument -_t('MyObject.PLURALS', 'An object|{count} objects', [ 'count' => '$count ]); +_t('MyObject.PLURALS', 'An object|{count} objects', [ 'count' => $count ]); ``` #### Usage in Template Files