From e7e15afdcb51b4f5f9cf824e5793fe0dcc304526 Mon Sep 17 00:00:00 2001 From: Martin Sundhaug Date: Mon, 1 Jan 2018 19:06:40 +0100 Subject: [PATCH] Fix typo in readme (#3) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 61417e2..09b4445 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ registerController("ExampleController", ['$api', '$scope', function($api, $scope This snippet makes use of our API to send a request to our PHP with the `getHello` action, and will set it a response into the `$scope.hello` variable. ### module.php -The `php/module.php` file must be in the `pineapple` namespace, and contain a routing switch statement, for example: +The `api/module.php` file must be in the `pineapple` namespace, and contain a routing switch statement, for example: ```