Skip to content

Commit ecc32b7

Browse files
Update qute-reference.adoc
Fix markup in examples and a couple of typos
1 parent b0cac4f commit ecc32b7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/src/main/asciidoc/qute-reference.adoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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
273273
In the `object[property_name]` (bracket notation) syntax, the `property_name` has to be a non-null <<literals,literal>> value.
274274

275275
An 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.
277277
Namespace 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

338338
The 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).
340340
For an expression that starts with a namespace the current context object is found using all the available ``NamespaceResolver``s.
341341
For an expression that does not start with a namespace the current context object is *derived from the position* of the tag.
342342
All 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.
14271427
Each item represents a part/chunk of the rendered template.
14281428
Again, `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

Comments
 (0)