Skip to content

Commit

Permalink
fix some typos and links
Browse files Browse the repository at this point in the history
  • Loading branch information
antograssiot committed Mar 6, 2016
1 parent 1151547 commit 7027bc6
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 45 deletions.
4 changes: 2 additions & 2 deletions src/Database/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ SELECT CONCAT(title, :c0) ...;

### Other SQL Clauses

Read of all other SQL clases that the builder is capable of generating in the [official API docs](http://api.cakephp.org/3.0/class-Cake.Database.Query.html)
Read of all other SQL clauses that the builder is capable of generating in the [official API docs](http://api.cakephp.org/3.2/class-Cake.Database.Query.html)

### Getting Results out of a Query

Expand All @@ -363,5 +363,5 @@ $results = $query->execute()->fetchAll('assoc');

## Official API

You can read the official [official API docs](http://api.cakephp.org/3.0/namespace-Cake.Database.html) to learn more of what this library
You can read the official [official API docs](http://api.cakephp.org/3.2/namespace-Cake.Database.html) to learn more of what this library
has to offer.
2 changes: 1 addition & 1 deletion src/Datasource/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ $conn = ConnectionManager::config('other', $connectionInstance);

## Documentation

Please make sure you check the [official API documentation](http://api.cakephp.org/3.0/namespace-Cake.Datasource.html)
Please make sure you check the [official API documentation](http://api.cakephp.org/3.2/namespace-Cake.Datasource.html)
2 changes: 1 addition & 1 deletion src/Network/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -1348,7 +1348,7 @@ public function cookie($options = null)
* cors($request, ['http://www.cakephp.org', '*.google.com', 'https://myproject.github.io']);
* ```
*
* *Note* The `$allowedDomains`, `$allowedMethods`, `$allowedHeaders` parameters are deprectated.
* *Note* The `$allowedDomains`, `$allowedMethods`, `$allowedHeaders` parameters are deprecated.
* Instead the builder object should be used.
*
* @param \Cake\Network\Request $request Request object
Expand Down
2 changes: 1 addition & 1 deletion src/ORM/LazyEagerLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function loadInto($entities, array $contain, Table $source)
* Builds a query for loading the passed list of entity objects along with the
* associations specified in $contain.
*
* @param \Cake\Collection\CollectionInterface $objects The original entitites
* @param \Cake\Collection\CollectionInterface $objects The original entities
* @param array $contain The associations to be loaded
* @param \Cake\ORM\Table $source The table to use for fetching the top level entities
* @return \Cake\ORM\Query
Expand Down
2 changes: 1 addition & 1 deletion src/Utility/Hash.php
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,7 @@ public static function numeric(array $data)
* Counts the dimensions of an array.
* Only considers the dimension of the first element in the array.
*
* If you have an un-even or heterogenous array, consider using Hash::maxDimensions()
* If you have an un-even or heterogeneous array, consider using Hash::maxDimensions()
* to get the dimensions of the array.
*
* @param array $data Array to count dimensions on
Expand Down
Loading

0 comments on commit 7027bc6

Please sign in to comment.