typo fixed

This commit is contained in:
Ryan Nickel
2015-02-01 14:28:32 -05:00
parent 4696cb1d35
commit c31603c7e5

View File

@@ -249,7 +249,7 @@ $data = $client->loadOutput();
## Front Controller
The front controller pattern is where you have a single entrance point for you web application (e.g. index.php) that
The front controller pattern is where you have a single entrance point for your web application (e.g. index.php) that
handles all of the requests. This code is responsible for loading all of the dependencies, processing the request and
sending the response to the browser. The front controller pattern can be beneficial because it encourages modular code
and gives you a central place to hook in code that should be run for every request (such as input sanitization).