46ef0f06 by Michael Richards

Update README with new dependent property delimiter.

1 parent d3981a08
...@@ -139,9 +139,9 @@ Just use `model:property` instead of `model.property` inside your binding declar ...@@ -139,9 +139,9 @@ Just use `model:property` instead of `model.property` inside your binding declar
139 139
140 #### Computed Properties 140 #### Computed Properties
141 141
142 Computed properties are functions that get re-evaluated when one or more dependent properties change. Declaring computed properties in Rivets.js is simple, just separate the function from it's dependencies with a `>`. The following `data-text` binding will get re-evaluated with `event.duration()` when either the event's `start` or `end` attribute changes. 142 Computed properties are functions that get re-evaluated when one or more dependent properties change. Declaring computed properties in Rivets.js is simple, just separate the function from it's dependencies with a *<*. The following `data-text` binding will get re-evaluated with `event.duration()` when either the event's `start` or `end` attribute changes.
143 143
144 <span data-text="event:duration > start end"></span> 144 <span data-text="event:duration < start end"></span>
145 145
146 #### Iteration Binding 146 #### Iteration Binding
147 147
......