Skip to content

Commit

Permalink
Fixed missing closing bracket for cmyk example
Browse files Browse the repository at this point in the history
The CMYK example has the closing bracket missing.
  • Loading branch information
pricop authored Jan 27, 2024
1 parent f6f9069 commit 7c46406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ echo $rgba; // rgba(127,127,127,0.5)
```php
use OzdemirBurak\Iris\Color\Cmyk;

$cmyk = new Cmyk('cmyk(0,100,0,0');
$cmyk = new Cmyk('cmyk(0,100,0,0)');

echo $cmyk->cyan(); // 0
echo $cmyk->magenta(); // 100
Expand Down

0 comments on commit 7c46406

Please sign in to comment.