diff --git a/README.md b/README.md
index 3c45b07..b2543c1 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@ The second argument will match the request method. The default method is 'get'.
include('Route.php');
Route::add('/user/([0-9]*)/edit',function($id){
- echo 'Edit user with id '.$id.'
';
+ echo 'Edit user with id '.$id.'
';
},'get');
Route::run('/');