From 1c55782058c2747096fda7d964ebd1216e113822 Mon Sep 17 00:00:00 2001 From: William <54738571+WilliamAAK@users.noreply.github.com> Date: Sun, 13 Apr 2025 17:48:40 +0200 Subject: [PATCH] Make the usage example actually work --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bfc784c..4b19ed0 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ require '/YourPath/Route.php' ```PHP use WilliamAAK\Http\Route; -Route::get('/', fn() => echo 'hello world'); +Route::get('/', fn() => print('hello world')); ``` See `Route.php` and read the comments for more information