diff options
author | Jennifer Hodgdon <yahgrp@poplarware.com> | 2012-09-13 16:39:33 -0700 |
---|---|---|
committer | Jennifer Hodgdon <yahgrp@poplarware.com> | 2012-09-13 16:39:33 -0700 |
commit | b2daf814f093db0638385bec893af3dcb7bbeaa5 (patch) | |
tree | 81d7c5c0ffc2eef32de8c4322d39971716b7310d | |
parent | 67aa14e348b17e804328b6e3036a71b662a5d3ab (diff) | |
download | brdo-b2daf814f093db0638385bec893af3dcb7bbeaa5.tar.gz brdo-b2daf814f093db0638385bec893af3dcb7bbeaa5.tar.bz2 |
Issue #1783348 by jfhovinne: Fix syntax in format_plural example
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index d7b413ce9..8f5e13a78 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -1751,7 +1751,7 @@ function format_xml_elements($array) { * $output = format_plural($update_count, * 'Changed the content type of 1 post from %old-type to %new-type.', * 'Changed the content type of @count posts from %old-type to %new-type.', - * array('%old-type' => $info->old_type, '%new-type' => $info->new_type))); + * array('%old-type' => $info->old_type, '%new-type' => $info->new_type)); * @endcode * * @param $count |