From 007242e3410a72b0e7ce4ee814280cf167815088 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Sun, 24 Jan 2016 22:19:58 +0100 Subject: [PATCH] Fix typo in comment (found by codespell) Signed-off-by: Stefan Weil --- admin_apcuinfo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_apcuinfo.php b/admin_apcuinfo.php index ce0826cd..d8c6dc3b 100644 --- a/admin_apcuinfo.php +++ b/admin_apcuinfo.php @@ -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);