From d22e57db7230b802d03920e4bfbc00126d47b2bd Mon Sep 17 00:00:00 2001 From: "Michael T. Schall" Date: Fri, 4 Jan 2019 04:46:58 -0600 Subject: [PATCH] docs(virtual-scroll): fix property name (#16952) --- core/src/components/virtual-scroll/readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/components/virtual-scroll/readme.md b/core/src/components/virtual-scroll/readme.md index b055aa22ba..b5d0c4af4a 100644 --- a/core/src/components/virtual-scroll/readme.md +++ b/core/src/components/virtual-scroll/readme.md @@ -9,8 +9,8 @@ instead a small subset of records (enough to fill the viewport) are rendered and reused as the user scrolls. ### The Basics -The array of records should be passed to the `item` property on the `ion-virtual-scroll` element. -The data given to the `item` property must be an array. An item +The array of records should be passed to the `items` property on the `ion-virtual-scroll` element. +The data given to the `items` property must be an array. An item template with the `*virtualItem` property is required in the `ion-virtual-scroll`. The `*virtualItem` property can be added to any element.