From 76a43c894d15cf44ff4be9ee36b41365d72de103 Mon Sep 17 00:00:00 2001 From: Zen-CODE Date: Sun, 15 Jun 2014 12:27:11 +0200 Subject: [PATCH] doc: grammar improvements to kivy/core/text/__init__.py --- kivy/core/text/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kivy/core/text/__init__.py b/kivy/core/text/__init__.py index 08687dff8..ea3ec93f5 100644 --- a/kivy/core/text/__init__.py +++ b/kivy/core/text/__init__.py @@ -13,7 +13,7 @@ accuracy of text rendering may vary. width <= 1. This is the backend layer for getting text out of different text providers, -you should only be using this directly if your needs aren't fulfilled by +you should only be using this directly if your needs aren't fulfilled by the :class:`~kivy.uix.label.Label`. Usage example:: @@ -24,9 +24,9 @@ Usage example:: ... my_label = CoreLabel() my_label.text = 'hello' - # label is usully not drawn till absolutely needed, force it to draw. + # the label is usually not drawn until needed, so force it to draw. my_label.refresh() - # Now access the texture of the label and use it where ever, + # Now access the texture of the label and use it wherever and # however you may please. hello_texture = my_label.texture