/**
* 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
/**
* 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)