WW-3117, fixing docs, good catch Dale Newfield

git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@772174 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Wesley Wannemacher
2009-05-06 12:27:12 +00:00
parent a3d11038eb
commit 59c236a583
@@ -53,7 +53,7 @@ import com.opensymphony.xwork2.util.ValueStack;
*
* <li><b>contentDisposition</b> - the content disposition header value for
* specifing the file name (default = <code>inline</code>, values are typically
* <i>filename="document.pdf"</i>.</li>
* <i>attachment; filename="document.pdf"</i>.</li>
*
* <li><b>inputName</b> - the name of the InputStream property from the chained
* action (default = <code>inputStream</code>).</li>
@@ -76,7 +76,7 @@ import com.opensymphony.xwork2.util.ValueStack;
* &lt;result name="success" type="stream"&gt;
* &lt;param name="contentType"&gt;image/jpeg&lt;/param&gt;
* &lt;param name="inputName"&gt;imageStream&lt;/param&gt;
* &lt;param name="contentDisposition"&gt;filename="document.pdf"&lt;/param&gt;
* &lt;param name="contentDisposition"&gt;attachment; filename="document.pdf"&lt;/param&gt;
* &lt;param name="bufferSize"&gt;1024&lt;/param&gt;
* &lt;/result&gt;
* <!-- END SNIPPET: example --></pre>