From 4535448bce2f82de5493fc2bb46e60b80612e53a Mon Sep 17 00:00:00 2001 From: "Martin D." Date: Wed, 16 Apr 2014 13:26:47 -0400 Subject: [PATCH] Fixed small typo ration changed to ratio --- docs/en/reference/image.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/reference/image.md b/docs/en/reference/image.md index 6583ec5cf..682183362 100644 --- a/docs/en/reference/image.md +++ b/docs/en/reference/image.md @@ -93,7 +93,7 @@ For output of an image tag with the image automatically resized to 80px width, y :::php $Image.SetWidth(80) // returns a image 80px wide, ratio kept the same - $Image.SetHeight(80) // returns a image 80px tall, ration kept the same + $Image.SetHeight(80) // returns a image 80px tall, ratio kept the same $Image.SetSize(80,80) // returns a 80x80px padded image $Image.SetRatioSize(80,80) // Returns an image scaled proportional, with its greatest diameter scaled to 80px $Image.CroppedImage(80,80) // Returns an 80x80 image cropped from the center.