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.