You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by ja...@apache.org on 2020/11/08 07:22:50 UTC

svn commit: r1883192 - /apr/apr/trunk/include/apr_tables.h

Author: jailletc36
Date: Sun Nov  8 07:22:50 2020
New Revision: 1883192

URL: http://svn.apache.org/viewvc?rev=1883192&view=rev
Log:
Fix some doxygen syntax.
@param should not be used inside description, or it will break the rendering

Modified:
    apr/apr/trunk/include/apr_tables.h

Modified: apr/apr/trunk/include/apr_tables.h
URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/apr_tables.h?rev=1883192&r1=1883191&r2=1883192&view=diff
==============================================================================
--- apr/apr/trunk/include/apr_tables.h (original)
+++ apr/apr/trunk/include/apr_tables.h Sun Nov  8 07:22:50 2020
@@ -389,11 +389,11 @@ typedef int (apr_table_do_callback_fn_t)
  * Iterate over a table running the provided function once for every
  * element in the table.  The varargs array must be a list of zero or
  * more (char *) keys followed by a NULL pointer.  If zero keys are
- * given, the @param comp function will be invoked for every element
+ * given, the @p comp function will be invoked for every element
  * in the table.  Otherwise, the function is invoked only for those
  * elements matching the keys specified.
  *
- * If an invocation of the comp function returns zero,
+ * If an invocation of the @p comp function returns zero,
  * iteration will continue using the next specified key, if any.
  *
  * @param comp The function to run
@@ -413,13 +413,13 @@ APR_DECLARE_NONSTD(int) apr_table_do(apr
 
 /** 
  * Iterate over a table running the provided function once for every
- * element in the table.  The vp varargs parameter must be a
+ * element in the table.  The @p vp varargs parameter must be a
  * list of zero or more (char *) keys followed by a NULL pointer.  If
- * zero keys are given, the @param comp function will be invoked for
+ * zero keys are given, the @p comp function will be invoked for
  * every element in the table.  Otherwise, the function is invoked
  * only for those elements matching the keys specified.
  *
- * If an invocation of the comp function returns zero,
+ * If an invocation of the @p comp function returns zero,
  * iteration will continue using the next specified key, if any.
  *
  * @param comp The function to run