Repository: incubator-juneau-website
Updated Branches:
  refs/heads/asf-site 6ee713328 -> 6e5128beb


Fix syntax error.

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/6e5128be
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/tree/6e5128be
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/diff/6e5128be

Branch: refs/heads/asf-site
Commit: 6e5128beb20ee2737242091620c751e5a9a7bb55
Parents: 6ee7133
Author: JamesBognar <[email protected]>
Authored: Mon Jul 3 12:31:54 2017 -0400
Committer: JamesBognar <[email protected]>
Committed: Mon Jul 3 12:31:54 2017 -0400

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


http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/6e5128be/content/about.html
----------------------------------------------------------------------
diff --git a/content/about.html b/content/about.html
index 6ec46b8..0a24b4c 100644
--- a/content/about.html
+++ b/content/about.html
@@ -982,7 +982,7 @@
                capabilities of the REST servlet API.
                <br>
                For example, the <code>PetStoreResource</code> class shows some 
advanced features such as using POJO renders
-               and converters.
+               and converters, and HTML widgets.
        </p>
        <img class='bordered' src='images/PetStore.png'>
        
@@ -1008,7 +1008,7 @@
 
                <jk>public int</jk> getAge() {
                        Calendar c = <jk>new</jk> GregorianCalendar();
-                       c.setTime(birthDate);
+                       c.setTime(<jf>birthDate</jf>);
                        <jk>return new</jk> 
GregorianCalendar().get(Calendar.<jsf>YEAR</jsf>) - 
c.get(Calendar.<jsf>YEAR</jsf>);
                }
        }
@@ -1047,7 +1047,7 @@
        <ja>@RestMethod</ja>(
                name=<js>"GET"</js>,
                path=<js>"/"</js>,
-               summary=<js>"The complete list of pets in the store"<js>,
+               summary=<js>"The complete list of pets in the store"</js>,
                
                <jc>// Add 'query' and 'content-types' menu items.</jc>
                widgets={

Reply via email to