From ae55b72020102f627ce6871749ac962a32140aaa Mon Sep 17 00:00:00 2001 From: "gabriel.pettier" Date: Sun, 18 Mar 2012 21:31:44 +0100 Subject: [PATCH] textinput's docstring: fix typo and add 'versionadded' infos --- kivy/uix/textinput.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kivy/uix/textinput.py b/kivy/uix/textinput.py index b7149d45a..6ec9fa4c6 100644 --- a/kivy/uix/textinput.py +++ b/kivy/uix/textinput.py @@ -981,10 +981,13 @@ class TextInput(Widget): ''' password = BooleanProperty(False) - '''If True, the widget will display it's characters as the character*. + '''If True, the widget will display its characters as the character*. :data:`password` is a :class:`~kivy.properties.BooleanProperty`, default to False + + .. versionadded:: 1.1.2 + ''' cursor_blink = BooleanProperty(False)