Clean up the documentation (case, etc.)

Document that OMITQUERY also omits the #fragment.  Whether this is
by design or not, this is the behavior of the code, so be consistent
with the code.


git-svn-id: https://svn.apache.org/repos/asf/apr/apr-util/trunk@58436 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/include/apr_uri.h b/include/apr_uri.h
index 1379ce3..69c425f 100644
--- a/include/apr_uri.h
+++ b/include/apr_uri.h
@@ -167,13 +167,13 @@
  * @param uptr All of the parts of the uri
  * @param flags How to unparse the uri.  One of:
  * <PRE>
- *    APR_URI_UNP_OMITSITEPART        suppress "scheme://user@site:port" 
+ *    APR_URI_UNP_OMITSITEPART        Suppress "scheme://user@site:port" 
  *    APR_URI_UNP_OMITUSER            Just omit user 
  *    APR_URI_UNP_OMITPASSWORD        Just omit password 
- *    APR_URI_UNP_OMITUSERINFO        omit "user:password@" part 
- *    APR_URI_UNP_REVEALPASSWORD      Show plain text password (default: show XXXXXXXX) 
+ *    APR_URI_UNP_OMITUSERINFO        Omit "user:password@" part
+ *    APR_URI_UNP_REVEALPASSWORD      Show plain text password (default: show XXXXXXXX)
  *    APR_URI_UNP_OMITPATHINFO        Show "scheme://user@site:port" only 
- *    APR_URI_UNP_OMITQUERY           Omit the "?queryarg" from the path 
+ *    APR_URI_UNP_OMITQUERY           Omit "?queryarg" or "#fragment" 
  * </PRE>
  * @return The uri as a string
  */