doc(fix): add missing semicolons

This commit is contained in:
Victor Westerlund 2024-10-27 11:54:18 +00:00
parent 88406487ec
commit cbea23108a

View file

@ -12,8 +12,8 @@ $mime->get_ext_from_type("image/webp"); // "webp"
$mime->get_type_from_ext("webp"); // "image/webp"
// From pathname
$mime->get_ext_from_file("path/to/file.webp") // "webp"
$mime->get_type_from_file("path/to/file.webp) // "image/webp"
$mime->get_ext_from_file("path/to/file.webp"); // "webp"
$mime->get_type_from_file("path/to/file.webp); // "image/webp"
```
# Installation