aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStéphane Reynaud2013-11-19 15:08:51 +0100
committerPete Bacon Darwin2013-11-20 11:38:29 +0000
commit043500fb27ed572f197e81b044518bd159c303e1 (patch)
tree879a2ba373e81058fd7916d49d81cd5d1068232c
parent3ceb6ab47797d98ea5fb423835923338d90caaca (diff)
downloadangular.js-043500fb27ed572f197e81b044518bd159c303e1.tar.bz2
docs(ngPluralize): Fix missing space before parentheses
There should be a space between "braces" and "(`{}`)" Closes #5026
-rw-r--r--src/ng/directive/ngPluralize.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ng/directive/ngPluralize.js b/src/ng/directive/ngPluralize.js
index 1cefc476..7004bf4f 100644
--- a/src/ng/directive/ngPluralize.js
+++ b/src/ng/directive/ngPluralize.js
@@ -50,7 +50,7 @@
* other numbers, for example 12, so that instead of showing "12 people are viewing", you can
* show "a dozen people are viewing".
*
- * You can use a set of closed braces(`{}`) as a placeholder for the number that you want substituted
+ * You can use a set of closed braces (`{}`) as a placeholder for the number that you want substituted
* into pluralized strings. In the previous example, Angular will replace `{}` with
* <span ng-non-bindable>`{{personCount}}`</span>. The closed braces `{}` is a placeholder
* for <span ng-non-bindable>{{numberExpression}}</span>.