Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Fixed a mistake in the Readme, stating that echoing a array would work..
  • Loading branch information
LasseRafn committed Aug 14, 2017
1 parent e78fa2d commit f4d6217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -39,7 +39,7 @@ echo $hex->darken(15); // Output: d9d9d9

// To RGB
$hex = new Hex('007F00');
echo $hex->lighten(50)->toRgb(); // Output: ['r' => 128, 'g' => 255, 'b' => 128]
$hex->lighten(50)->toRgb(); // Returns: ['r' => 128, 'g' => 255, 'b' => 128]
```

## Methods
Expand Down

0 comments on commit f4d6217

Please sign in to comment.