From c1fbe7064b7ca867ceeb862df550c8c26d2f8ba1 Mon Sep 17 00:00:00 2001 From: geojeff Date: Tue, 12 Feb 2013 13:49:08 -0600 Subject: [PATCH] Fixed docs. --- kivy/adapters/listadapter.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/kivy/adapters/listadapter.py b/kivy/adapters/listadapter.py index 10816f33f..4361477ee 100644 --- a/kivy/adapters/listadapter.py +++ b/kivy/adapters/listadapter.py @@ -44,7 +44,7 @@ If you wish to have a bare-bones list adapter, without selection, use Added data = ListProperty([]), which was proably inadvertently deleted at some point. This means that whenever data changes an update will fire, instead of having to reset the data object (Adapter has data defined as - and ObjectProperty, so we need to reset it here to ListAdapter -- see also + and ObjectProperty, so we need to reset it here to ListProperty). See also DictAdapter and its set of data = DictProperty(). ''' @@ -71,8 +71,9 @@ class ListAdapter(Adapter, EventDispatcher): ''' data = ListProperty([]) - '''The data list property is redefined from Adapter. We will bind to data - and want any changes to trigger updates. See also how + '''The data list property is redefined here, overriding its definition as + an ObjectProperty in the Adapter class.. We will bind to data and want any + changes to trigger updates. See also how :class:`~kivy.adapters.DictAdapter` redefines data as :class:`~kivy.properties.DictProperty`.