From 3d561cd012accf65f5d6e4e0d9bf3d2e3ddccebe Mon Sep 17 00:00:00 2001 From: Stephen Moon Date: Thu, 9 Aug 2018 10:43:52 +0100 Subject: [PATCH] Small typo --- 05-router.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/05-router.md b/05-router.md index fda5b22..44c4ddb 100644 --- a/05-router.md +++ b/05-router.md @@ -42,7 +42,7 @@ switch ($routeInfo[0]) { } ``` -In the first part of the code, you are registering the available routes for you application. In the second part, the dispatcher gets called and the appropriate part of the switch statement will be executed. If a route was found, the handler callable will be executed. +In the first part of the code, you are registering the available routes for your application. In the second part, the dispatcher gets called and the appropriate part of the switch statement will be executed. If a route was found, the handler callable will be executed. This setup might work for really small applications, but once you start adding a few routes your bootstrap file will quickly get cluttered. So let's move them out into a separate file.