From 05ebb6ceb2fc1483cdfe3595176d4b7226f56413 Mon Sep 17 00:00:00 2001 From: Jeremy Herve Date: Tue, 11 Sep 2018 15:12:56 +0200 Subject: [PATCH] Tonesque: fix typo in function's comment. (#10126) Fixes #10124 #### Changes proposed in this Pull Request: The color function accepts a type parameter that can be one of the following strings: hex, rgb, or hsv. #### Testing instructions: Not much to test here. You can check the `get_color` function downer in the same file, to see what types can be used. #### Proposed changelog entry for your changes: Tonesque: fix typo in function's comment. --- _inc/lib/tonesque.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_inc/lib/tonesque.php b/_inc/lib/tonesque.php index bb4c7477e6dd7..17158e3d2b6c1 100644 --- a/_inc/lib/tonesque.php +++ b/_inc/lib/tonesque.php @@ -86,7 +86,7 @@ public static function imagecreatefromurl( $image_url ) { * * Construct object from image. * - * @param optional $type (hex, rgb, hsl) + * @param optional $type (hex, rgb, hsv) * @return color as a string formatted as $type * */