http://git-wip-us.apache.org/repos/asf/isis-site/blob/d03bb511/content/guides/tg.html
----------------------------------------------------------------------
diff --git a/content/guides/tg.html b/content/guides/tg.html
index ca84258..21625e3 100644
--- a/content/guides/tg.html
+++ b/content/guides/tg.html
@@ -1909,7 +1909,7 @@ mvn jetty:run</code></pre>
<div class="sect2">
<h3 id="_actions">4.13. Actions</h3>
<div class="paragraph">
-<p>Most business functionality is implemented using actions� basically a
<code>public</code> method accepting domain classes and primitives as its
parameter types. The action can return a domain entity, or a collection of
entities, or a primitive/String/value, or void. If a domain entity is returned
then that object is rendered immediately; if a collection is returned then the
Wicket viewer renders a table. Such collections are sometimes called
"standalone" collections.</p>
+<p>Most business functionality is implemented using actions basically a
<code>public</code> method accepting domain classes and primitives as its
parameter types. The action can return a domain entity, or a collection of
entities, or a primitive/String/value, or void. If a domain entity is returned
then that object is rendered immediately; if a collection is returned then the
Wicket viewer renders a table. Such collections are sometimes called
"standalone" collections.</p>
</div>
<div class="ulist">
<ul>
@@ -2005,7 +2005,7 @@ mvn jetty:run</code></pre>
<div class="ulist">
<ul>
<li>
-<p>use the <a
href="rgant.html#_rgant-PropertyLayout_multiLine"><code>@Property(multiLine=…​)</code></a>
annotation to render a text area instead of a text box</p>
+<p>use the <a
href="rgant.html#_rgant-PropertyLayout_multiLine"><code>@PropertyLayout(multiLine=…​)</code></a>
annotation to render a text area instead of a text box</p>
</li>
<li>
<p>use the <a
href="rgant.html#_rgant-Property_maxLength"><code>@Property(maxLength=…​)</code></a>
annotation to specify the maximum number of characters allowable</p>
@@ -2036,7 +2036,7 @@ mvn jetty:run</code></pre>
<div class="ulist">
<ul>
<li>
-<p>rather than the <a
href="rgcms.html#_rgcms_methods_reserved_title"><code>title()</code></a>
<code>title()</code> method</p>
+<p>rather than the <a
href="rgcms.html#_rgcms_methods_reserved_title"><code>title()</code></a>
method</p>
</li>
</ul>
</div>
@@ -2132,7 +2132,7 @@ mvn jetty:run</code></pre>
<div class="sect2">
<h3 id="_collections">4.19. Collections</h3>
<div class="paragraph">
-<p>Returning back to references, Isis also supports vector (multi-valued)
references to another object instances� in other words collections. We
sometimes called these "parented" collections (to distinguish from a
"standalone" collection as returned from an action)</p>
+<p>Returning back to references, Isis also supports vector (multi-valued)
references to another object instances in other words collections. We sometimes
called these "parented" collections (to distinguish from a "standalone"
collection as returned from an action)</p>
</div>
<div class="ulist">
<ul>
@@ -2145,7 +2145,7 @@ mvn jetty:run</code></pre>
<div class="ulist">
<ul>
<li>
-<p>you can also <code>equals()</code>, <code>hashCode()</code>,
<code>toString()</code></p>
+<p>you can also implement <code>equals()</code>, <code>hashCode()</code>,
<code>toString()</code></p>
</li>
</ul>
</div>
@@ -2539,7 +2539,7 @@ mvn jetty:run</code></pre>
* Inject the <a
href="rgsvc.html#_rgsvc_api_ActionInvocationContext"><code>ActionInteractionContext</code></a>
(request-scoped) service
* Use the <code>ActionInteractionContext</code> service to determine whether
the action was invoked in bulk or as a regular action.
* return null if invoked on a collection; the Wicket viewer will go back to
the original collection
-** (if return non-null, then Wicket viewer will navigate to the object of the
last invocation� generally not what is required)</p>
+** (if return non-null, then Wicket viewer will navigate to the object of the
last invocation generally not what is required)</p>
</div>
<div class="paragraph">
<p>The similar <a
href="rgsvc.html#_rgsvc_api_Scratchpad"><code>Scratchpad</code></a>
(request-scoped) domain service is a good way to share information between bulk
action invocations:</p>