From 84b70f3c0944b3de88b780b1ad9093c55faeec58 Mon Sep 17 00:00:00 2001 From: Nate Smith Date: Mon, 24 Jun 2013 20:44:07 -0400 Subject: [PATCH] Change the name of the local variable $router to $myRouter to match the preceding code fragment. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0eaa0d3..ea3a5c7 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ $myRouter->addRoute(Route::newFromUriTemplate('/things/', 'ThingCollectionHandle $myRouter->addRoute(Route::newFromUriTemplate('/things/{id}', 'ThingItemHandler')); // Determine and output the response. -$response = $router->getResponse(); +$response = $myRouter->getResponse(); $response->respond(); ```