You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by jo...@apache.org on 2010/11/13 06:42:30 UTC

svn commit: r1034662 - /httpd/apreq/trunk/include/apreq_module.h

Author: joes
Date: Sat Nov 13 05:42:30 2010
New Revision: 1034662

URL: http://svn.apache.org/viewvc?rev=1034662&view=rev
Log:
doc bugs

Modified:
    httpd/apreq/trunk/include/apreq_module.h

Modified: httpd/apreq/trunk/include/apreq_module.h
URL: http://svn.apache.org/viewvc/httpd/apreq/trunk/include/apreq_module.h?rev=1034662&r1=1034661&r2=1034662&view=diff
==============================================================================
--- httpd/apreq/trunk/include/apreq_module.h (original)
+++ httpd/apreq/trunk/include/apreq_module.h Sat Nov 13 05:42:30 2010
@@ -49,7 +49,7 @@ typedef struct apreq_handle_t {
 } apreq_handle_t;
 
 /**
- * @brief Vtable describing the necessary environment functions.
+ * @brief Vtable describing the necessary module functions.
  */
 
 
@@ -357,11 +357,11 @@ apr_status_t apreq_temp_dir_get(apreq_ha
  * Convenience macro for defining a module by mapping
  * a function prefix to an associated apreq_module_t structure.
  *
- * @param pre Prefix to define new environment.  All attributes of
- *            the apreq_env_module_t struct are defined with this as their
+ * @param pre Prefix to define new module.  All attributes of
+ *            the apreq_module_t struct are defined with this as their
  *            prefix. The generated struct is named by appending "_module" to
  *            the prefix.
- * @param mmn Magic number (i.e. version number) of this environment.
+ * @param mmn Magic number (i.e. version number) of this module.
  */
 #define APREQ_MODULE(pre, mmn) const apreq_module_t     \
   pre##_module = { #pre, mmn,                           \
@@ -426,7 +426,7 @@ APREQ_DECLARE(apreq_param_t *)apreq_para
  * @param req request handle.
  * @param name desired cookie name
  *
- * @return The first matching parameter (with args searched first) or NULL.
+ * @return The first matching cookie or NULL.
  */
 #define apreq_cookie(req, name) apreq_jar_get(req, name)