Skip to content

Commit

Permalink
Correct CollectionView Typo
Browse files Browse the repository at this point in the history
As written, the filterer example compiles to item.get('color' === red), not item.get('color') === red.
  • Loading branch information
rsloan committed Jul 12, 2013
1 parent 834fb56 commit af0bcc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/chaplin.collection_view.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ The `CollectionView` is responsible for displaying collections. For every item i

```coffeescript
filterer: (item, index) ->
item.get 'color' is 'red'
item.get('color') is 'red'

...

Expand Down

0 comments on commit af0bcc6

Please sign in to comment.