Corrected order of width and height in usage docs

This commit is contained in:
Lovell Fuller 2013-08-26 16:21:38 +01:00
parent 6e3f9b04de
commit 6f5125e889

View File

@ -51,7 +51,7 @@ sharp.crop("input.jpg", "output.jpg", 300, 200, function(err) {
if (err) {
throw err;
}
// output.jpg is a 200 pixels wide and 300 pixels high image
// output.jpg is a 300 pixels wide and 200 pixels high image
// containing a scaled and cropped version of input.jpg
});
```