From 78a7f12f5d37b5b4b5317fd01b2ab177f31717dc Mon Sep 17 00:00:00 2001 From: SteamPixel Date: Thu, 25 Oct 2018 12:53:28 +0200 Subject: [PATCH] Update README.md Fixed illogical sentence --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e6f9f25..7d28358 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,8 @@ The codebase is very small and very easy to understand. So you can use it as boi Take a look at the index.php file. As you can see the ```Route::add()``` method is used to add new routes to your project. The first argument takes the path segment. You can also use RegExp in there to parse out variables. -All matching variables will be pushed to the handler method. -The second argument will match the request method. The default method is 'get'. +All matching variables will be pushed to the handler method defined in the second argument. +The third argument will match the request method. The default method is 'get'. ## Simple example: ``` @@ -61,4 +61,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. \ No newline at end of file +SOFTWARE.