Browse Source

[ZF-6662]misspelling Zend_Db_Statment

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@15588 44c647ce-9c0f-0410-b52a-842ac1e357ba
yoshida@zend.co.jp 16 years ago
parent
commit
2059387fa3
1 changed files with 4 additions and 4 deletions
  1. 4 4
      library/Zend/Db/Adapter/Abstract.php

+ 4 - 4
library/Zend/Db/Adapter/Abstract.php

@@ -205,15 +205,15 @@ abstract class Zend_Db_Adapter_Abstract
                 }
             }
         }
-        
+
         if (!isset($config['charset'])) {
             $config['charset'] = null;
         }
-        
+
         $this->_config = array_merge($this->_config, $config);
         $this->_config['options'] = $options;
         $this->_config['driver_options'] = $driverOptions;
-        
+
 
         // obtain the case setting, if there is one
         if (array_key_exists(Zend_Db::CASE_FOLDING, $options)) {
@@ -1177,7 +1177,7 @@ abstract class Zend_Db_Adapter_Abstract
      * Prepare a statement and return a PDOStatement-like object.
      *
      * @param string|Zend_Db_Select $sql SQL query
-     * @return Zend_Db_Statment|PDOStatement
+     * @return Zend_Db_Statement|PDOStatement
      */
     abstract public function prepare($sql);