Skip to content

Commit

Permalink
Merge pull request adamghill#2 from thom801/master
Browse files Browse the repository at this point in the history
Fix for typo in README
  • Loading branch information
adamghill committed Jun 22, 2013
2 parents e068cc4 + 8fae4b8 commit 05f3221
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ npm install exchanger

``` javascript
var exchanger = require('exchanger');
retriever.initialize({ url: 'webmail.example.com', username: 'username', password: 'password' }, function(err) {
exchanger.initialize({ url: 'webmail.example.com', username: 'username', password: 'password' }, function(err) {
console.log('Initialized!');
});
```
Expand All @@ -23,9 +23,9 @@ npm install exchanger

``` javascript
var exchanger = require('exchanger');
retriever.initialize({ url: 'webmail.example.com', username: 'username', password: 'password' }, function(err) {
exchanger.initialize({ url: 'webmail.example.com', username: 'username', password: 'password' }, function(err) {
exchanger.getEmails('inbox', 50, function(err, emails) {
console.log(emails);
});
});
```
```

0 comments on commit 05f3221

Please sign in to comment.