From 67bef16c3a16e5d14ce39af0406b87b2d74c398d Mon Sep 17 00:00:00 2001 From: James Brooks Date: Wed, 23 Dec 2015 12:12:13 +0000 Subject: [PATCH] Fix double backticks --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 352ab7e..a2831fa 100755 --- a/README.md +++ b/README.md @@ -27,13 +27,13 @@ Add `"tom-lingham/searchy" : "2.*"` to your composer.json file under `require`: Run `composer update` in your terminal to pull down the package into your vendors folder. -Add the service provider to the `providers` array in Laravel's app/config/app.php file: +Add the service provider to the `providers` array in Laravel's `./config/app.php` file: ```php TomLingham\Searchy\SearchyServiceProvider::class ``` -Add the Alias to the `aliases` array in Laravel's `./config/app.php`` file if you want to have quick access to it in your application: +Add the Alias to the `aliases` array in Laravel's `./config/app.php` file if you want to have quick access to it in your application: ```php 'Searchy' => TomLingham\Searchy\Facades\Searchy::class