Skip to content

Commit 3ea5ad5

Browse files
authored
README: missing semicolon in "resize" section
1 parent ebb7bd5 commit 3ea5ad5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
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)