Skip to content

Commit e83524d

Browse files
committed
Clarify library path in usage examples.
1 parent 839653e commit e83524d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ A basic test to confirm the library is set up and functional.
2828

2929
```php
3030
<?php
31-
require '../mailchimp-api-php/vendor/autoload.php';
31+
require 'PATH_TO_LIBRARY/mailchimp-api-php/vendor/autoload.php';
3232
$api_key = 'YOUR_API_KEY';
3333
$mailchimp = new Mailchimp\Mailchimp($api_key);
3434

@@ -49,7 +49,7 @@ uses that data to make another.
4949

5050
```php
5151
<?php
52-
require '../mailchimp-api-php/vendor/autoload.php';
52+
require 'PATH_TO_LIBRARY/mailchimp-api-php/vendor/autoload.php';
5353
$api_key = 'YOUR_API_KEY';
5454
$mailchimp_lists = new Mailchimp\MailchimpLists($api_key);
5555

0 commit comments

Comments
 (0)