summaryrefslogtreecommitdiff
path: root/ext/gd/tests/imagefilledellipse_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/gd/tests/imagefilledellipse_basic.phpt')
-rw-r--r--ext/gd/tests/imagefilledellipse_basic.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gd/tests/imagefilledellipse_basic.phpt b/ext/gd/tests/imagefilledellipse_basic.phpt
index ed78dde4d2..ef492510af 100644
--- a/ext/gd/tests/imagefilledellipse_basic.phpt
+++ b/ext/gd/tests/imagefilledellipse_basic.phpt
@@ -11,7 +11,7 @@ $image = imagecreatetruecolor(100, 100);
$white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF);
-//create an ellipse and fill it with white color
+//create an ellipse and fill it with white color
imagefilledellipse($image, 50, 50, 40, 30, $white);
include_once __DIR__ . '/func.inc';