diff options
author | Eric Covener <covener@apache.org> | 2021-08-03 20:29:35 +0200 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2021-08-03 20:29:35 +0200 |
commit | 700d9b5b5bc710021e978c95ef271e49bc79cc89 (patch) | |
tree | 67309ec58b0aee30cc4c2cbf441797486459571c /include | |
parent | Corrected MODULE_MAGIC_NUMBER_MINOR. (diff) | |
download | apache2-700d9b5b5bc710021e978c95ef271e49bc79cc89.tar.xz apache2-700d9b5b5bc710021e978c95ef271e49bc79cc89.zip |
clarification/fixes around the replace() function
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1891990 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/ap_expr.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/ap_expr.h b/include/ap_expr.h index 3e1eea0be2..8923de7db7 100644 --- a/include/ap_expr.h +++ b/include/ap_expr.h @@ -287,8 +287,9 @@ typedef struct { /** arg for pre-parsing (only if a simple string). * For binary ops, this is the right argument. - * For functions with more arguments, this is the first string - * argument. */ + * For AP_EXPR_FUNC_STRING functions with multiple arguments, this is the first + * simple/literal string argument. + */ const char *arg; } ap_expr_lookup_parms; |