diff options
author | Peter Wemm <peter@FreeBSD.org> | 2013-11-25 22:15:47 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 2013-11-25 22:15:47 +0000 |
commit | 5bf7090be49a8f79350e8a04ecf260984cb126cf (patch) | |
tree | b888b0286fddebe26a2a96112de741138b72924f /include/apr_hooks.h | |
parent | d08b300705ff687948b1a2b89543e3a452e90c32 (diff) |
Diffstat (limited to 'include/apr_hooks.h')
-rw-r--r-- | include/apr_hooks.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/apr_hooks.h b/include/apr_hooks.h index b675711e72b1..eee16e3c63e5 100644 --- a/include/apr_hooks.h +++ b/include/apr_hooks.h @@ -313,24 +313,24 @@ APU_DECLARE_DATA extern apr_pool_t *apr_hook_global_pool; /** * A global variable to determine if debugging information about the - * hooks functions should be printed + * hooks functions should be printed. */ APU_DECLARE_DATA extern int apr_hook_debug_enabled; /** - * The name of the module that is currently registering a function + * The name of the module that is currently registering a function. */ APU_DECLARE_DATA extern const char *apr_hook_debug_current; /** - * Register a hook function to be sorted + * Register a hook function to be sorted. * @param szHookName The name of the Hook the function is registered for * @param aHooks The array which stores all of the functions for this hook */ APU_DECLARE(void) apr_hook_sort_register(const char *szHookName, apr_array_header_t **aHooks); /** - * Sort all of the registerd functions for a given hook + * Sort all of the registered functions for a given hook. */ APU_DECLARE(void) apr_hook_sort_all(void); |