@@ -223,7 +223,7 @@ Likewise, a line that contains an _expression_ or a _non-whitespace character_ i
223223 <3>
224224 {/for} <4>
225225 </ul>
226- <body>
226+ </ body>
227227</html>
228228----
229229<1> This is a standalone line and will be removed.
@@ -240,7 +240,7 @@ Likewise, a line that contains an _expression_ or a _non-whitespace character_ i
240240 <li>Foo 100</li>
241241
242242 </ul>
243- <body>
243+ </ body>
244244</html>
245245----
246246
@@ -258,7 +258,7 @@ In this case, all whitespace characters from a standalone line will be printed t
258258
259259
260260 </ul>
261- <body>
261+ </ body>
262262</html>
263263----
264264
@@ -273,7 +273,7 @@ In the `object.property` (dot notation) syntax, the `property` must be a <<ident
273273In the `object[property_name]` (bracket notation) syntax, the `property_name` has to be a non-null <<literals,literal>> value.
274274
275275An expression can start with an optional namespace followed by a colon (`:`).
276- A valid namespace consist of alphanumeric characters and underscores.
276+ A valid namespace consists of alphanumeric characters and underscores.
277277Namespace expressions are resolved differently - see also <<expression_resolution>>.
278278
279279.Property Accessor Examples
@@ -336,7 +336,7 @@ You can learn more about virtual methods in the <<virtual_methods,following sect
336336==== Resolution
337337
338338The first part of the expression is always resolved against the <<current_context_object,current context object>>.
339- If no result is found for the first part it's resolved against the parent context object (if available).
339+ If no result is found for the first part, it's resolved against the parent context object (if available).
340340For an expression that starts with a namespace the current context object is found using all the available ``NamespaceResolver``s.
341341For an expression that does not start with a namespace the current context object is *derived from the position* of the tag.
342342All other parts of an expression are resolved using all ``ValueResolver``s against the result of the previous resolution.
@@ -1426,7 +1426,7 @@ template.data(foo).createUni().subscribe().with(System.out::println);
14261426`TemplateInstance.createMulti()` returns a new `Multi<String>` object.
14271427Each item represents a part/chunk of the rendered template.
14281428Again, `createMulti()` does not trigger rendering.
1429- Instead, every time a computation is triggered by a subscriber the template is rendered again.
1429+ Instead, every time a computation is triggered by a subscriber, the template is rendered again.
14301430
14311431.`TemplateInstance.createMulti()` Example
14321432[source,java]
0 commit comments