From 8d4e4440391448d5367a3fa4ef3f456f234a0acc Mon Sep 17 00:00:00 2001
From: Dave Barr <dave@php.net>
Date: Tue, 27 Jul 2004 04:28:31 +0000
Subject: [PATCH] - s/function/functions/, move a para around and add some see
 alsos.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@164406 c90b9560-bf6c-de11-be94-00142212c4b1
---
 .../functions/array-intersect-uassoc.xml      | 24 +++++++++----------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/reference/array/functions/array-intersect-uassoc.xml b/reference/array/functions/array-intersect-uassoc.xml
index 91cfd97aec..9a7ed17434 100644
--- a/reference/array/functions/array-intersect-uassoc.xml
+++ b/reference/array/functions/array-intersect-uassoc.xml
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
   <refentry id="function.array-intersect-uassoc">
    <refnamediv>
     <refname>array_intersect_uassoc</refname>
-    <refpurpose>Computes the intersection of arrays with additional index check. The indexes are compared by using a callback functions.</refpurpose>
+    <refpurpose>Computes the intersection of arrays with additional index check. The indexes are compared by using a callback function</refpurpose>
    </refnamediv>
    <refsect1>
     <title>Description</title>
@@ -19,7 +19,12 @@
      containing all the values of <parameter>array1</parameter>
      that are present in all the arguments. Note that the keys are used in
      the comparison unlike in <function>array_intersect</function>.
-     The indexes are compared by using a callback functions.
+    </para>
+    <para>
+     The index comparison is done by a user supplied callback function.
+     It must return an integer less than, equal to, or greater than zero
+     if the first argument is considered to be respectively less than,
+     equal to, or greater than the second.
     </para>
     <para>
      <example>
@@ -47,18 +52,13 @@ Array
       </screen>
      </example>
     </para>
-    <para>
-     For comparison is used the user supplied callback function.
-     It must return an integer less than, equal
-     to, or greater than zero if the first argument is considered to
-     be respectively less than, equal to, or greater than the
-     second.
-    </para>
     <para>
      See also <function>array_intersect</function>,
      <function>array_intersect_assoc</function>,
-     <function>array_uintersect_assoc</function> and
-     <function>array_uintersect_uassoc</function>.
+     <function>array_uintersect_assoc</function>,
+     <function>array_uintersect_uassoc</function>,
+     <function>array_intersect_key</function> and
+     <function>array_intersect_ukey</function>.
     </para>
    </refsect1>
   </refentry>