From f2c5137ae1464f55bd5ba9fe0d188e57abd4d71d Mon Sep 17 00:00:00 2001 From: Kevin M Granger Date: Thu, 23 Jul 2015 15:09:52 -0700 Subject: [PATCH] Fix typo in 05-router.md Routers.php -> Routes.php --- 05-router.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/05-router.md b/05-router.md index a381107..d635a58 100644 --- a/05-router.md +++ b/05-router.md @@ -74,6 +74,6 @@ $routeDefinitionCallback = function (\FastRoute\RouteCollector $r) { $dispatcher = \FastRoute\simpleDispatcher($routeDefinitionCallback); ``` -This is already an improvement, but now all the handler code is in the `Routers.php` file. This is not optimal, so let's fix that in the next part. +This is already an improvement, but now all the handler code is in the `Routes.php` file. This is not optimal, so let's fix that in the next part. [<< previous](04-http.md) | [next >>](06-dispatching-to-a-class.md)