@@ -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