Skip to content

Commit 9f18de3

Browse files
FIx typo on var names in docs (#3695)
1 parent 9c0147b commit 9f18de3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/events.class.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -271,9 +271,9 @@ const MyCollectionView = CollectionView.extend({
271271
onBeforeFilter(myCollectionView) {
272272
console.log('Nothing has changed yet!');
273273
},
274-
onFilter(myCollectionView, attachViews, detachedView) {
275-
console.log('Array of attached views', attachedView);
276-
console.log('Array of detached views', attachedView);
274+
onFilter(myCollectionView, attachedViews, detachedViews) {
275+
console.log('Array of attached views', attachedViews);
276+
console.log('Array of detached views', detachedViews);
277277
}
278278
});
279279
```

0 commit comments

Comments
 (0)