From 6f5125e889dc3f9fa57cca2e0b45f678b071b5de Mon Sep 17 00:00:00 2001 From: Lovell Fuller Date: Mon, 26 Aug 2013 16:21:38 +0100 Subject: [PATCH] Corrected order of width and height in usage docs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9ce0edb7..a9996d00 100755 --- a/README.md +++ b/README.md @@ -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 }); ```