From 6674759d961e31832ac600b8ae789a5aff9075fa Mon Sep 17 00:00:00 2001 From: SteamPixel Date: Sat, 11 Jan 2020 22:57:18 +0100 Subject: [PATCH] Corrected documentation of run() arguments --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 07a838d..75f5dd4 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Route::run('/api/v1'); Do not forget to edit the basepath in .htaccess too if you are on Apache2. In order to run the test files correctly inside a basepath you should also adjust the navigation links inside the index.php. ## Enable case sensitive routes, trailing slashes and multi match mode -The second, third and fourth parameters of `Route::run('/', false, false, true);` are set to false by default. +The second, third and fourth parameters of `Route::run('/', false, false, false);` are set to false by default. Using this parameters you can switch on and off several options: * Second parameter: You can enable case sensitive mode by setting the second parameter to true. * Third parameter: By default the router will ignore trailing slashes. Set this parameter to true to avoid this.