Skip to content

Commit a44bc70

Browse files
committed
update binding annotations page
1 parent a3f60c5 commit a44bc70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/11-advanced/09-eager-or-lazy.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import useBaseUrl from '@docusaurus/useBaseUrl';
1010

1111
# Eager or Lazy Bindings
1212

13-
`@Eager` and `@Lazy` annotations can be used on the following DSL steps to control when expressions are evaluated and bound to names. In the absence of either annotation, expressions will be evaluated every time they are referenced by name.
13+
`@Eager` and `@Lazy` annotations can be used on the following DSL steps to control when expressions are evaluated and bound to names. In the absence of either annotation, expressions will be evaluated every time they are referenced by name and discarded once used.
1414

1515
## @Eager
1616

@@ -54,7 +54,7 @@ The `@Lazy` annotation can be used to evaluate and bind the result an expression
5454

5555
> Since <Link to="https://github.com/gwen-interpreter/gwen-web/releases/tag/v1.0.0">v1.0.0</Link>
5656
57-
In the absence of either annoation, the expression will be unconditionally evaluated every time the name is referenced. This is the default behaviour.
57+
In the absence of either annoation, the expression will be unconditionally evaluated every time the name is referenced without being saved to memory. This is the default behaviour.
5858

5959
:::note Eager example
6060

0 commit comments

Comments
 (0)