From bbffaef1ff4c76523489089a8722f35be8988622 Mon Sep 17 00:00:00 2001 From: steampixel Date: Tue, 13 Mar 2018 16:27:14 +0100 Subject: [PATCH] Fixed mixed indents --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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('/');