From c31603c7e5eab1e38a1a1555e2aae7fc5b466d1f Mon Sep 17 00:00:00 2001 From: Ryan Nickel Date: Sun, 1 Feb 2015 14:28:32 -0500 Subject: [PATCH] typo fixed --- pages/Design-Patterns.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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).