]> granicus.if.org Git - apache/commitdiff
Proper doc style
authorWilliam A. Rowe Jr <wrowe@apache.org>
Fri, 27 Jul 2001 20:59:20 +0000 (20:59 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Fri, 27 Jul 2001 20:59:20 +0000 (20:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89748 13f79535-47bb-0310-9956-ffa450edef68

include/ap_config.h
include/ap_mmn.h

index 89d01b47d54856e446af10d8d921448af863e962..0b7a58848328b39e20d79c71e9595f22bb8b9218 100644 (file)
 /**
  * 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
  * 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
  * 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
index 7cafa2c381fde2d3f17c20146eeecdd4e3e5cd0d..15ee99517c353c6a31f45c4449568349de24c790 100644 (file)
@@ -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:
  * #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)