diff --git a/docs/src/main/asciidoc/qute-reference.adoc b/docs/src/main/asciidoc/qute-reference.adoc index d25cfa49e0de5..722cf10fea891 100644 --- a/docs/src/main/asciidoc/qute-reference.adoc +++ b/docs/src/main/asciidoc/qute-reference.adoc @@ -223,7 +223,7 @@ Likewise, a line that contains an _expression_ or a _non-whitespace character_ i <3> {/for} <4> - + ---- <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
  • Foo 100
  • - + ---- @@ -258,7 +258,7 @@ In this case, all whitespace characters from a standalone line will be printed t - + ---- @@ -273,7 +273,7 @@ In the `object.property` (dot notation) syntax, the `property` must be a <> value. An expression can start with an optional namespace followed by a colon (`:`). -A valid namespace consist of alphanumeric characters and underscores. +A valid namespace consists of alphanumeric characters and underscores. Namespace expressions are resolved differently - see also <>. .Property Accessor Examples @@ -336,7 +336,7 @@ You can learn more about virtual methods in the <>. -If no result is found for the first part it's resolved against the parent context object (if available). +If no result is found for the first part, it's resolved against the parent context object (if available). For an expression that starts with a namespace the current context object is found using all the available ``NamespaceResolver``s. For an expression that does not start with a namespace the current context object is *derived from the position* of the tag. 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); `TemplateInstance.createMulti()` returns a new `Multi` object. Each item represents a part/chunk of the rendered template. Again, `createMulti()` does not trigger rendering. -Instead, every time a computation is triggered by a subscriber the template is rendered again. +Instead, every time a computation is triggered by a subscriber, the template is rendered again. .`TemplateInstance.createMulti()` Example [source,java]