Skip to content

Commit

Permalink
fixes for docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnny Ray committed Oct 15, 2012
1 parent 70cdffe commit 7f11431
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -87,14 +87,14 @@ avo.login(function(err, currentUserModel) {

#### Media
```javascript
avo.upload( '/path/to/media.jpeg/', function (err, newMediaModel) {} );
avo.upload( '/path/to/media.jpeg', function (err, newMediaModel) {} );

avo.getRecentMedia( {
before: Date.now() // Unix timestamp in milliseconds
after: Date.now() // Unix timestamp in milliseconds
}, function (err, mediaModelArray) {} );

avo.deleteMedi( 'mediaId', function (err) {} );
avo.deleteMedia( 'mediaId', function (err) {} );
```

#### Hugs & Kisses
Expand Down

0 comments on commit 7f11431

Please sign in to comment.