Skip to content

Commit

Permalink
Merge pull request #49 from pricop/patch-1
Browse files Browse the repository at this point in the history
Fixed missing closing bracket for cmyk example
  • Loading branch information
ozdemirburak authored Jan 27, 2024
2 parents f6f9069 + 7c46406 commit 7f23865
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 7f23865

Please sign in to comment.