From 7a55290d0e8e86aa10d8026f62ec92349cebe939 Mon Sep 17 00:00:00 2001 From: Zen-CODE Date: Tue, 7 May 2013 01:18:15 -0500 Subject: [PATCH] Revisions to gettingstarted/properties.rst --- doc/sources/gettingstarted/properties.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/sources/gettingstarted/properties.rst b/doc/sources/gettingstarted/properties.rst index 35a762955..c667ae086 100644 --- a/doc/sources/gettingstarted/properties.rst +++ b/doc/sources/gettingstarted/properties.rst @@ -1,7 +1,7 @@ Properties ---------- -Kivy introduce a new way of declaring the properties within a class. +Kivy introduces a new way of declaring properties within a class. Before:: class MyClass(object): @@ -15,9 +15,9 @@ After, using Kivy's properties:: numeric_var = NumericProperty(1) Theses properties implement the `Observer pattern -`_. You can: +`_. They help you to: -- Allow manipulating your widgets in kv language more easily +- Easily manipulate widgets defined in the :doc:`/guide/lang` - Automatically observe any changes and dispatch functions/code accordingly - Check and validate values - Optimize memory management