various typos in comments

This commit is contained in:
Kuba Brecka
2013-03-06 08:52:24 +01:00
parent f8e04a5c48
commit dc62136642
8 changed files with 8 additions and 8 deletions

View File

@@ -10,7 +10,7 @@ module ImageSizer
return [w.floor, h.floor] if w < max_width
# Using the maximum width, resize the heigh retaining the aspect ratio
# Using the maximum width, resize the height retaining the aspect ratio
[max_width.floor, (h * (max_width / w)).floor]
end