Browse Source

[ZF-11154][ZF-11155] Missing closing bracket in code example

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@23814 44c647ce-9c0f-0410-b52a-842ac1e357ba
yoshida@zend.co.jp 15 years ago
parent
commit
3695254e40
1 changed files with 2 additions and 2 deletions
  1. 2 2
      documentation/manual/en/module_specs/Zend_Locale-Parsing.xml

+ 2 - 2
documentation/manual/en/module_specs/Zend_Locale-Parsing.xml

@@ -272,7 +272,7 @@ print $number;
 
             <programlisting language="php"><![CDATA[
 $locale = new Zend_Locale();
-if (Zend_Locale_Format::isNumber('13.445,36', array('locale' => 'de_AT')) {
+if (Zend_Locale_Format::isNumber('13.445,36', array('locale' => 'de_AT'))) {
     print "Number";
 } else {
     print "not a Number";
@@ -344,7 +344,7 @@ print $number;
 
             <programlisting language="php"><![CDATA[
 $locale = new Zend_Locale('de_AT');
-if (Zend_Locale_Format::isFloat('13.445,36', array('locale' => $locale)) {
+if (Zend_Locale_Format::isFloat('13.445,36', array('locale' => $locale))) {
     print "float";
 } else {
     print "not a float";