From 0ce5f9d833b97ff22fa437de97434174ccbd56e5 Mon Sep 17 00:00:00 2001 From: Zen-CODE Date: Sat, 30 Jul 2016 15:00:41 +0200 Subject: [PATCH] doc: corrected subclass vs. child reference for the recycleview --- kivy/uix/recycleview/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kivy/uix/recycleview/__init__.py b/kivy/uix/recycleview/__init__.py index a9eb328a3..2b2dbbe1e 100644 --- a/kivy/uix/recycleview/__init__.py +++ b/kivy/uix/recycleview/__init__.py @@ -33,7 +33,7 @@ the RecycleView. A layout manager is automatically added as a layout manager when added as the child of the RecycleView. Similarly when removed. A requirement is that the -layout manager must be a subclass of the RecycleView so the view port can be +layout manager must be a child of the RecycleView so the view port can be found. A minimal example might look something like this::