Skip to content

Commit 748582f

Browse files
author
Christophe Jaillet
committed
Fix some doxygen syntax.
@param should not be used inside description, or it will break the rendering (r1883192 in trunk) git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.7.x@1883193 13f79535-47bb-0310-9956-ffa450edef68
1 parent 97dfe8d commit 748582f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

include/apr_tables.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -389,11 +389,11 @@ typedef int (apr_table_do_callback_fn_t)(void *rec, const char *key,
389389
* Iterate over a table running the provided function once for every
390390
* element in the table. The varargs array must be a list of zero or
391391
* more (char *) keys followed by a NULL pointer. If zero keys are
392-
* given, the @param comp function will be invoked for every element
392+
* given, the @p comp function will be invoked for every element
393393
* in the table. Otherwise, the function is invoked only for those
394394
* elements matching the keys specified.
395395
*
396-
* If an invocation of the comp function returns zero,
396+
* If an invocation of the @p comp function returns zero,
397397
* iteration will continue using the next specified key, if any.
398398
*
399399
* @param comp The function to run
@@ -413,13 +413,13 @@ APR_DECLARE_NONSTD(int) apr_table_do(apr_table_do_callback_fn_t *comp,
413413

414414
/**
415415
* Iterate over a table running the provided function once for every
416-
* element in the table. The vp varargs parameter must be a
416+
* element in the table. The @p vp varargs parameter must be a
417417
* list of zero or more (char *) keys followed by a NULL pointer. If
418-
* zero keys are given, the @param comp function will be invoked for
418+
* zero keys are given, the @p comp function will be invoked for
419419
* every element in the table. Otherwise, the function is invoked
420420
* only for those elements matching the keys specified.
421421
*
422-
* If an invocation of the comp function returns zero,
422+
* If an invocation of the @p comp function returns zero,
423423
* iteration will continue using the next specified key, if any.
424424
*
425425
* @param comp The function to run

0 commit comments

Comments
 (0)