From c621e33dd31b5a1914c176b681550cb45335496d Mon Sep 17 00:00:00 2001 From: "Daniel P. Brown" Date: Wed, 1 Dec 2010 19:22:38 +0000 Subject: [PATCH] Fixes bug #53441. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@305895 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/image/functions/imagefilledarc.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/image/functions/imagefilledarc.xml b/reference/image/functions/imagefilledarc.xml index d567b603f8..a4e832bf3f 100644 --- a/reference/image/functions/imagefilledarc.xml +++ b/reference/image/functions/imagefilledarc.xml @@ -132,7 +132,7 @@ // create image $image = imagecreatetruecolor(100, 100); -// allocate some solors +// allocate some colors $white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF); $gray = imagecolorallocate($image, 0xC0, 0xC0, 0xC0); $darkgray = imagecolorallocate($image, 0x90, 0x90, 0x90);