diff options
author | Rich Bowen <rbowen@apache.org> | 2012-03-30 13:26:19 +0200 |
---|---|---|
committer | Rich Bowen <rbowen@apache.org> | 2012-03-30 13:26:19 +0200 |
commit | 23fe127e8759bca923e1ed21919ce9e2f1a0785b (patch) | |
tree | ae413af0599a1cd0f227d315e3681299a0c9bcc3 /docs/manual/mod/mod_expires.xml | |
parent | Rebuild (diff) | |
download | apache2-23fe127e8759bca923e1ed21919ce9e2f1a0785b.tar.xz apache2-23fe127e8759bca923e1ed21919ce9e2f1a0785b.zip |
Use more standard options syntax, as per https://issues.apache.org/bugzilla/show_bug.cgi?id=52112
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1307363 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | docs/manual/mod/mod_expires.xml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/manual/mod/mod_expires.xml b/docs/manual/mod/mod_expires.xml index 514f76781d..e91b76e61f 100644 --- a/docs/manual/mod/mod_expires.xml +++ b/docs/manual/mod/mod_expires.xml @@ -63,13 +63,13 @@ criteria</description> can also be defined in a more readable syntax of the form:</p> <example> - ExpiresDefault "<base> [plus] {<num> - <type>}*"<br /> - ExpiresByType type/encoding "<base> [plus] - {<num> <type>}*" + ExpiresDefault "<var>base</var> [plus <var>num</var> <var>type</var>] + [<var>num</var> <var>type</var>] ..."<br /> + ExpiresByType type/encoding "<var>base</var> [plus <var>num</var> <var>type</var>] + [<var>num</var> <var>type</var>] ..." </example> - <p>where <base> is one of:</p> + <p>where <var>base</var> is one of:</p> <ul> <li><code>access</code></li> @@ -80,9 +80,9 @@ criteria</description> <li><code>modification</code></li> </ul> - <p>The <code>plus</code> keyword is optional. <num> + <p>The <code>plus</code> keyword is optional. <var>num</var> should be an integer value [acceptable to <code>atoi()</code>], - and <type> is one of:</p> + and <var>type</var> is one of:</p> <ul> <li><code>years</code></li> |