WW-3793 corrects name of PlainText Result in documentation to be plainText and not plaintext

git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@1311872 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Lukasz Lenart
2012-04-10 17:15:38 +00:00
parent cbb55e9793
commit 73da07e6af
@@ -35,7 +35,7 @@ import java.nio.charset.Charset;
/**
* <!-- START SNIPPET: description -->
*
* A result that send the content out as plain text. Usefull typically when needed
* A result that send the content out as plain text. Useful typically when needed
* to display the raw content of a JSP or Html file for example.
*
* <!-- END SNIPPET: description -->
@@ -57,12 +57,12 @@ import java.nio.charset.Charset;
* <!-- START SNIPPET: example -->
*
* &lt;action name="displayJspRawContent" &gt;
* &lt;result type="plaintext"&gt;/myJspFile.jsp&lt;/result&gt;
* &lt;result type="plainText"&gt;/myJspFile.jsp&lt;/result&gt;
* &lt;/action&gt;
*
*
* &lt;action name="displayJspRawContent" &gt;
* &lt;result type="plaintext"&gt;
* &lt;result type="plainText"&gt;
* &lt;param name="location"&gt;/myJspFile.jsp&lt;/param&gt;
* &lt;param name="charSet"&gt;UTF-8&lt;/param&gt;
* &lt;/result&gt;