diff --git a/pages/Design-Patterns.md b/pages/Design-Patterns.md index 231eccc..1e0e424 100644 --- a/pages/Design-Patterns.md +++ b/pages/Design-Patterns.md @@ -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).