Merge pull request #5 from nthdesign/master

Tiny change to the README.md file.
This commit is contained in:
PJ Dietz 2013-06-24 18:04:45 -07:00
commit 8268daedfb
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ $myRouter->addRoute(Route::newFromUriTemplate('/things/', 'ThingCollectionHandle
$myRouter->addRoute(Route::newFromUriTemplate('/things/{id}', 'ThingItemHandler')); $myRouter->addRoute(Route::newFromUriTemplate('/things/{id}', 'ThingItemHandler'));
// Determine and output the response. // Determine and output the response.
$response = $router->getResponse(); $response = $myRouter->getResponse();
$response->respond(); $response->respond();
``` ```