Skip to content

Commit cb02a72

Browse files
committed
Merge pull request laravel#710 from pborreli/typos
Fixed typos
2 parents 6a9226e + d4ab3b7 commit cb02a72

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ To show a custom view when your application is in maintenance mode, you may add
139139
return Response::view('maintenance', array(), 503);
140140
});
141141

142-
If the Closure passed to the `down` method returns `NULL`, maintenace mode will be ignored for that request.
142+
If the Closure passed to the `down` method returns `NULL`, maintenance mode will be ignored for that request.
143143

144144
### Maintenance Mode & Queues
145145

database.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Sometimes you may need to reconnect to a given database:
118118

119119
DB::reconnect('foo');
120120

121-
If you need to disconnect from the given database due to exceeding the underyling PDO instance's `max_connections` limit, use the `disconnect` method:
121+
If you need to disconnect from the given database due to exceeding the underlying PDO instance's `max_connections` limit, use the `disconnect` method:
122122

123123
DB::disconnect('foo');
124124

eloquent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1064,7 +1064,7 @@ You may customize which fields are automatically mutated, and even completely di
10641064
return array('created_at');
10651065
}
10661066

1067-
When a column is considered a date, you may set its value to a UNIX timetamp, date string (`Y-m-d`), date-time string, and of course a `DateTime` / `Carbon` instance.
1067+
When a column is considered a date, you may set its value to a UNIX timestamp, date string (`Y-m-d`), date-time string, and of course a `DateTime` / `Carbon` instance.
10681068

10691069
To totally disable date mutations, simply return an empty array from the `getDates` method:
10701070

packages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ If you are using a package in your application, you may occasionally wish to cus
197197

198198
php artisan view:publish vendor/package
199199

200-
This command will move the package's views into the `app/views/packages` directory. If this directory doesn't already exist, it will be created when you run the command. Once the views have been published, you may tweak them to your liking! The exported views will automatically take precendence over the package's own view files.
200+
This command will move the package's views into the `app/views/packages` directory. If this directory doesn't already exist, it will be created when you run the command. Once the views have been published, you may tweak them to your liking! The exported views will automatically take precedence over the package's own view files.
201201

202202
<a name="package-migrations"></a>
203203
## Package Migrations

releases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Laravel 4.1 features a totally re-written routing layer. The API is the same; ho
5151

5252
### Improved Session Engine
5353

54-
With this release, we're also introducing an entirely new session engine. Similar to the routing improvements, the new session layer is leaner and faster. We are no longer using Symfony's (and therefore PHP's) session handling facilites, and are using a custom solution that is simpler and easier to maintain.
54+
With this release, we're also introducing an entirely new session engine. Similar to the routing improvements, the new session layer is leaner and faster. We are no longer using Symfony's (and therefore PHP's) session handling facilities, and are using a custom solution that is simpler and easier to maintain.
5555

5656
### Doctrine DBAL
5757

0 commit comments

Comments
 (0)