From db66205edac63271bdbb9ec7cfd6d1151ec862aa Mon Sep 17 00:00:00 2001 From: Torben Wilson Date: Sun, 20 Aug 2000 02:38:22 +0000 Subject: [PATCH] Typo fixes. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@30545 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/misc.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions/misc.xml b/functions/misc.xml index 41e8f8eefa..efd75bd917 100644 --- a/functions/misc.xml +++ b/functions/misc.xml @@ -753,12 +753,12 @@ Mozilla/4.5 [en] (X11; U; Linux 2.2.9 i586)<hr> - i signed integer (machine dependant size and byte order) + i signed integer (machine dependent size and byte order) - I unsigned integer (machine dependant size and byte order) + I unsigned integer (machine dependent size and byte order) @@ -824,7 +824,7 @@ $binarydata = pack ("nvc*", 0x1234, 0x5678, 65, 66); Also note that PHP internally stores integral values as signed - values of a machine dependant size. If you give it an unsigned + values of a machine dependent size. If you give it an unsigned integral value too large to be stored that way it is converted to a double which often yields an undesired result.