summaryrefslogtreecommitdiffstats
path: root/include/ap_expr.h
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2010-12-11 18:18:35 +0100
committerStefan Fritsch <sf@apache.org>2010-12-11 18:18:35 +0100
commit23f8375f8b325ebca1b01e1a8a527d50ba6c8f8d (patch)
tree4778dd007375ddde5bdddee7d1726ab06af8c992 /include/ap_expr.h
parentindentation + coding style fixes (diff)
downloadapache2-23f8375f8b325ebca1b01e1a8a527d50ba6c8f8d.tar.xz
apache2-23f8375f8b325ebca1b01e1a8a527d50ba6c8f8d.zip
doxygen improvements
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1044680 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/ap_expr.h')
-rw-r--r--include/ap_expr.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/ap_expr.h b/include/ap_expr.h
index c35414ec19..5b29ca84d0 100644
--- a/include/ap_expr.h
+++ b/include/ap_expr.h
@@ -69,7 +69,7 @@ typedef struct {
* @return > 0 if expression evaluates to true, == 0 if false, < 0 on error
* @note err will be set to NULL on success, or to an error message on error
* @note request headers used during evaluation will be added to the Vary:
- * response header, unless AP_EXPR_FLAGS_DONT_VARY is set.
+ * response header, unless ::AP_EXPR_FLAGS_DONT_VARY is set.
*/
AP_DECLARE(int) ap_expr_exec(request_rec *r, const ap_expr_info_t *expr,
const char **err);
@@ -88,7 +88,7 @@ AP_DECLARE(int) ap_expr_exec(request_rec *r, const ap_expr_info_t *expr,
* available to ap_expr_exec_re and to use ap_expr_exec_re's matches
* later on.
* @note request headers used during evaluation will be added to the Vary:
- * response header, unless AP_EXPR_FLAGS_DONT_VARY is set.
+ * response header, unless ::AP_EXPR_FLAGS_DONT_VARY is set.
*/
AP_DECLARE(int) ap_expr_exec_re(request_rec *r, const ap_expr_info_t *expr,
apr_size_t nmatch, ap_regmatch_t *pmatch,
@@ -131,8 +131,8 @@ typedef struct {
* If the argument to a function or operator is constant, the lookup function
* may also parse that argument and store the parsed data in the context.
*
- * The default lookup function is the hook 'ap_expr_lookup_default' which just
- * calls ap_expr_lookup_default. Modules can use it to make functions and
+ * The default lookup function is the hook ::ap_expr_lookup_default which just
+ * calls ap_run_expr_lookup. Modules can use it to make functions and
* variables generally available.
*
* An ap_expr consumer can also provide its own custom lookup function to