From ab3b0f2c65adb835389e190f7999c88c0d0655e1 Mon Sep 17 00:00:00 2001 From: Joe Green Date: Tue, 17 Jun 2014 23:54:51 +0100 Subject: [PATCH] Update README.md --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e0cf074..cc22aef 100644 --- a/README.md +++ b/README.md @@ -189,29 +189,29 @@ class Test { return 'This is the default page and will respond to /controller and /controller/index'; } - public function anyTestany() + public function anyTest() { - return 'This will respond to /controller/testany with any method'; + return 'This will respond to /controller/test with any method'; } - public function getTestget() + public function getTest() { - return 'This will respond to /controller/testget with only a GET method'; + return 'This will respond to /controller/test with only a GET method'; } - public function postTestpost() + public function postTest() { - return 'This will respond to /controller/testpost with only a POST method'; + return 'This will respond to /controller/test with only a POST method'; } - public function putTestput() + public function putTest() { - return 'This will respond to /controller/testput with only a PUT method'; + return 'This will respond to /controller/test with only a PUT method'; } - public function deleteTestdelete() + public function deleteTest() { - return 'This will respond to /controller/testdelete with only a DELETE method'; + return 'This will respond to /controller/test with only a DELETE method'; } }