From: William A. Rowe Jr Date: Fri, 27 Jul 2001 20:59:20 +0000 (+0000) Subject: Proper doc style X-Git-Tag: 2.0.23~177 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26676d06d2eb9e7ada94f8efd881762d9d3baa3d;p=thirdparty%2Fapache%2Fhttpd.git Proper doc style git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89748 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/ap_config.h b/include/ap_config.h index 89d01b47d54..0b7a5884832 100644 --- a/include/ap_config.h +++ b/include/ap_config.h @@ -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_name. + * is called ap_run_name. * * @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_name. + * so. The implementation is called ap_run_name. * * @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_name. + * ap_run_name. * * @param ret The return type of the hook (and the hook runner) * @param name The name of the hook diff --git a/include/ap_mmn.h b/include/ap_mmn.h index 7cafa2c381f..15ee99517c3 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -90,7 +90,7 @@ /** * Determine if the server's current MODULE_MAGIC_NUMBER is at least a * specified value. - *
+ * 
  * 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
- * 
+ *
* @param major The major module magic number * @param minor The minor module magic number * @deffunc MODULE_MAGIC_AT_LEAST(int major, int minor)