Skip to content

Commit c8acaa8

Browse files
Merge pull request #180 from GabrieleOlmi/master
README: missing semicolon in "resize" section
2 parents ebb7bd5 + 3ea5ad5 commit c8acaa8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ To scale an image, in this case to half it's size (scaling is percentage based):
6666
```php
6767
$image = new ImageResize('image.jpg');
6868
$image->scale(50);
69-
$image->save('image2.jpg')
69+
$image->save('image2.jpg');
7070
```
7171

7272
To resize an image according to one dimension (keeping aspect ratio):

0 commit comments

Comments
 (0)