Fixed various typos throughout laravel folder.

Signed-off-by: Josh Miller <josh@joshmmiller.com>
This commit is contained in:
Josh Miller
2012-07-21 20:18:55 -04:00
parent 845023fc80
commit 0ea30993d4
36 changed files with 159 additions and 159 deletions

View File

@@ -168,7 +168,7 @@ class Query {
// If the column is just a string, we can assume that the join just
// has a simple on clause, and we'll create the join instance and
// add the clause automatically for the develoepr.
// add the clause automatically for the developer.
else
{
$join = new Query\Join($type, $table);
@@ -686,7 +686,7 @@ class Query {
{
// Because some database engines may throw errors if we leave orderings
// on the query when retrieving the total number of records, we'll drop
// all of the ordreings and put them back on the query.
// all of the orderings and put them back on the query.
list($orderings, $this->orderings) = array($this->orderings, null);
$total = $this->count(reset($columns));
@@ -852,7 +852,7 @@ class Query {
}
// All of the aggregate methods are handled by a single method, so we'll
// catch them all here and then pass them off to the agregate method
// catch them all here and then pass them off to the aggregate method
// instead of creating methods for each one of them.
if (in_array($method, array('count', 'min', 'max', 'avg', 'sum')))
{