Commit 1575d79a authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  Proper doc style


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89748 13f79535-47bb-0310-9956-ffa450edef68
parent f7d68dea
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -186,7 +186,7 @@
/**
 * Implement an Apache core hook that has no return code, and
 * therefore runs all of the registered functions. The implementation
 * is called ap_run_<I>name</I>.
 * is called ap_run_<i>name</i>.
 *
 * @param name The name of the hook
 * @param args_decl The declaration of the arguments for the hook, for example
@@ -205,7 +205,7 @@
 * then returned from the hook runner. If the hooks run to completion,
 * then ok is returned. Note that if no hook runs it would probably be
 * more correct to return decline, but this currently does not do
 * so. The implementation is called ap_run_<I>name</I>.
 * so. The implementation is called ap_run_<i>name</i>.
 *
 * @param ret The return type of the hook (and the hook runner)
 * @param name The name of the hook
@@ -227,7 +227,7 @@
 * Implement a hook that runs until the first function that returns
 * something other than decline. If all functions return decline, the
 * hook runner returns decline. The implementation is called
 * ap_run_<I>name</I>.
 * ap_run_<i>name</i>.
 *
 * @param ret The return type of the hook (and the hook runner)
 * @param name The name of the hook
+2 −2
Original line number Diff line number Diff line
@@ -90,7 +90,7 @@
/**
 * Determine if the server's current MODULE_MAGIC_NUMBER is at least a
 * specified value.
 * <PRE>
 * <pre>
 * Useful for testing for features.
 * For example, suppose you wish to use the apr_table_overlap
 *    function.  You can do this:
@@ -100,7 +100,7 @@
 * #else
 *     ... alternative code which doesn't use apr_table_overlap()
 * #endif
 * </PRE>
 * </pre>
 * @param major The major module magic number
 * @param minor The minor module magic number
 * @deffunc MODULE_MAGIC_AT_LEAST(int major, int minor)