Skip to content

Commit

Permalink
Fix comment mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
trichins authored and markstory committed Jan 7, 2014
1 parent e58acb4 commit 95989bd
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cake/Database/Connection.php
Expand Up @@ -504,7 +504,7 @@ public function supportsQuoting() {

/**
* Quotes a database identifier (a column name, table name, etc..) to
* be used safely in queries without the risk of using reserver words
* be used safely in queries without the risk of using reserved words
*
* @param string $identifier
* @return string
Expand Down
2 changes: 1 addition & 1 deletion Cake/Database/Dialect/MysqlDialectTrait.php
Expand Up @@ -50,7 +50,7 @@ trait MysqlDialectTrait {
/**
* Get the schema dialect.
*
* Used by Cake\Schema package to reflect schema and
* Used by Cake\Database\Schema package to reflect schema and
* generate schema.
*
* @return Cake\Database\Schema\MysqlSchema
Expand Down
2 changes: 1 addition & 1 deletion Cake/Database/Dialect/PostgresDialectTrait.php
Expand Up @@ -125,7 +125,7 @@ protected function _transformFunctionExpression(FunctionExpression $expression)
/**
* Get the schema dialect.
*
* Used by Cake\Schema package to reflect schema and
* Used by Cake\Database\Schema package to reflect schema and
* generate schema.
*
* @return Cake\Database\Schema\PostgresSchema
Expand Down
2 changes: 1 addition & 1 deletion Cake/Database/Dialect/SqliteDialectTrait.php
Expand Up @@ -138,7 +138,7 @@ protected function _insertQueryTranslator($query) {
/**
* Get the schema dialect.
*
* Used by Cake\Schema package to reflect schema and
* Used by Cake\Database\Schema package to reflect schema and
* generate schema.
*
* @return Cake\Database\Schema\SqliteSchema
Expand Down
4 changes: 2 additions & 2 deletions Cake/Database/Driver.php
Expand Up @@ -157,7 +157,7 @@ public abstract function queryTranslator($type);
/**
* Get the schema dialect.
*
* Used by Cake\Schema package to reflect schema and
* Used by Cake\Database\Schema package to reflect schema and
* generate schema.
*
* If all the tables that use this Driver specify their
Expand All @@ -169,7 +169,7 @@ public abstract function schemaDialect();

/**
* Quotes a database identifier (a column name, table name, etc..) to
* be used safely in queries without the risk of using reserver words
* be used safely in queries without the risk of using reserved words
*
* @param string $identifier
* @return string
Expand Down
2 changes: 1 addition & 1 deletion Cake/Database/SqlDialectTrait.php
Expand Up @@ -20,7 +20,7 @@ trait SqlDialectTrait {

/**
* Quotes a database identifier (a column name, table name, etc..) to
* be used safely in queries without the risk of using reserver words
* be used safely in queries without the risk of using reserved words
*
* @param string $identifier
* @return string
Expand Down

0 comments on commit 95989bd

Please sign in to comment.