From ca5fc04dd7d63c963384f9bf7b6aa7e97db0775c Mon Sep 17 00:00:00 2001 From: geojeff Date: Fri, 7 Dec 2012 04:38:54 -0600 Subject: [PATCH] Fixed typos. --- kivy/adapters/adapter.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kivy/adapters/adapter.py b/kivy/adapters/adapter.py index c96662589..80c8cf3e0 100644 --- a/kivy/adapters/adapter.py +++ b/kivy/adapters/adapter.py @@ -21,16 +21,16 @@ Arguments: is a list, and for :class:`~kivy.adapters.dictadapter.DictAdapter`, it is a dict. -* *cls*, for a list key class to use to instantiate key view +* *cls*, for a list key class to use to instantiate list item view instances (Use this or the template argument) -* *template*, a kv template to use to instantiate key view instances (Use +* *template*, a kv template to use to instantiate list item view instances (Use this or the cls argument) * *args_converter*, a function to transform data item argument sets, in preparation for either a cls instantiation, or a kv template - invocation. If no args_converter is provided, a default one is set, that - assumes that the data items are strings. + invocation. If no args_converter is provided, a default one, that + assumes that the data items are strings, is used. '''