Skip to content

Commit 12fe3d2

Browse files
author
John Hutcheson
committed
Capitalization Correction
1 parent 63d0fd4 commit 12fe3d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ The only file that you need to require is mailchimpRoot.php. The file structure
3131
##Instantiation
3232

3333
```php
34-
$mailchimp = new mailchimp('123abc123abc123abc123abc-us0');
34+
$mailchimp = new Mailchimp('123abc123abc123abc123abc-us0');
3535
```
3636

37-
To instantiate you will need a new instance of the `mailchimp` class with your MailChimp account's API key as its only argument.
37+
To instantiate you will need a new instance of the `Mailchimp` class with your MailChimp account's API key as its only argument.
3838

3939
##Constructing a Request
4040

41-
Once you have instantiated the `mailchimp` class you can start constructing requests. Constructing requests is done by 'chaining' methods to the `$mailchimp` instance. In most cases this 'chain' will end with the HTTP verb for your request. So an example of retrieving a lists collection would look like this:
41+
Once you have instantiated the `Mailchimp` class you can start constructing requests. Constructing requests is done by 'chaining' methods to the `$mailchimp` instance. In most cases this 'chain' will end with the HTTP verb for your request. So an example of retrieving a lists collection would look like this:
4242

4343
```php
4444
$mailchimp->lists()->GET();

0 commit comments

Comments
 (0)