Fix typos in README.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -156,7 +156,7 @@ Computed properties are functions that get re-evaluated when one or more depende | ... | @@ -156,7 +156,7 @@ Computed properties are functions that get re-evaluated when one or more depende |
156 | <span data-text="event:duration < .start .end"></span> | 156 | <span data-text="event:duration < .start .end"></span> |
157 | ``` | 157 | ``` |
158 | 158 | ||
159 | The prepended `.` is a shorthand syntax for specifying dependencies that are the same object as the target object, so the above declaration is effectively the same as `event:duration < event.start event.end`. | 159 | The prepended `.` is a shorthand syntax for specifying dependencies that are on the same object as the target, so that the above declaration is effectively the same as `event:duration < event.start event.end`. |
160 | 160 | ||
161 | #### Iteration Binding | 161 | #### Iteration Binding |
162 | 162 | ... | ... |
-
Please register or sign in to post a comment