Fix typo in comment (found by codespell)

Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
Stefan Weil
2016-01-24 22:19:58 +01:00
parent 0932b38364
commit 007242e341

View File

@@ -343,7 +343,7 @@ function fill_arc($im, $centerX, $centerY, $diameter, $start, $end, $color1, $co
if (function_exists("imagefilledarc")) {
// exists only if GD 2.0.1 is avaliable
// exists only if GD 2.0.1 is available
imagefilledarc($im, $centerX + 1, $centerY + 1, $diameter, $diameter, $start, $end, $color1, IMG_ARC_PIE);
imagefilledarc($im, $centerX, $centerY, $diameter, $diameter, $start, $end, $color2, IMG_ARC_PIE);
imagefilledarc($im, $centerX, $centerY, $diameter, $diameter, $start, $end, $color1, IMG_ARC_NOFILL | IMG_ARC_EDGED);