From c841250933cdab978c7fa9031e099aaff0fab3e0 Mon Sep 17 00:00:00 2001 From: Arsen Mirzaev Tatyano-Muradovich Date: Thu, 21 Aug 2025 18:41:11 +0700 Subject: [PATCH] the --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4caca0c..47e2667 100755 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Execute: `composer require mirzaev/minimal` ## Usage *index.php* ```php -// Initializing core +// Initializing the core $core = new core(namespace: __NAMESPACE__); // Initializing routes @@ -25,7 +25,7 @@ $core->router ->write('/$categories', new route('categories', 'read'), 'GET') // Collector (since 0.3.0) ; -// Handling request +// Handling the request $core->start(); ```