Skip to content

Commit

Permalink
Update README with new dependent property delimiter.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeric committed Aug 15, 2012
1 parent d3981a0 commit 46ef0f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@ Just use `model:property` instead of `model.property` inside your binding declar

#### Computed Properties

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.
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.

<span data-text="event:duration > start end"></span>
<span data-text="event:duration < start end"></span>

#### Iteration Binding

Expand Down

0 comments on commit 46ef0f0

Please sign in to comment.