You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juneau.apache.org by ja...@apache.org on 2017/02/21 14:24:13 UTC

incubator-juneau-website git commit: Fix typos.

Repository: incubator-juneau-website
Updated Branches:
  refs/heads/asf-site cfe486646 -> d39ee8014


Fix typos.

Project: http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/commit/d39ee801
Tree: http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/tree/d39ee801
Diff: http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/diff/d39ee801

Branch: refs/heads/asf-site
Commit: d39ee8014d85c79605e23947580c94c47189cc7b
Parents: cfe4866
Author: JamesBognar <ja...@apache.org>
Authored: Tue Feb 21 09:24:10 2017 -0500
Committer: JamesBognar <ja...@apache.org>
Committed: Tue Feb 21 09:24:10 2017 -0500

----------------------------------------------------------------------
 content/about.html | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/d39ee801/content/about.html
----------------------------------------------------------------------
diff --git a/content/about.html b/content/about.html
index 1fd9c8d..328a953 100644
--- a/content/about.html
+++ b/content/about.html
@@ -618,7 +618,7 @@
 	</p>
 	<br><br><hr>
 	<p>
-		The remote proxy interface API allows you to invoke POJO methods using REST...
+		The remote proxy interface API allows you to invoke server-side POJO methods on the client side using REST...
 	</p>
 	<p class='bcode'>
 	RestClient client = <jk>new</jk> RestClient(JsonSerializer.<jk>class</jk>, JsonParser.<jk>class</jk>)
@@ -632,7 +632,7 @@
 		<jk>new</jk> Person(
 			<js>"John Smith"</js>, 
 			<js>"Aug 1, 1999"</js>,
-			<jk>new</jk> Address(<js>"My street"</js>, <js>"My city"</js>, <js>"My state"</js>, 12345, <jk>true</jk>
+			<jk>new</jk> Address(<js>"My street"</js>, <js>"My city"</js>, <js>"My state"</js>, 12345, <jk>true</jk>)
 		)
 	);
 	</p>
@@ -664,13 +664,13 @@
 	</p>
 	<p>
 		Parameters passed in on the client side are serialized (JSON in this case) as an HTTP POST, parsed on the
-		server side, and passed to the invocation method.  The returned POJO is then marshalled back as an HTTP response.
+		server side, and then passed to the invocation method.  The returned POJO is then marshalled back as an HTTP response.
 	</p>
 	<p>
 		The RemoteableServlet class shows how sophisticated REST interfaces can be built on the Juneau RestServlet
 		API using very little code.  The RemoteableServlet class itself consists of only 53 lines of code, yet is
 		a sophisticated discoverable and self-documenting REST interface.  And since the remote proxy API is built on top 
-		of REST, it can be debugged using nothing more than a browser.
+		of REST, it can be debugged using just a browser.
 	</p>
 	<br><hr>
 	<p>