From 612ae26958f4a9d181e93e55c13c4bd7e3685780 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Sj=C3=B6str=C3=B6m?= Date: Thu, 29 May 2014 00:13:55 +0200 Subject: [PATCH] Changed a tiny grammatical error --- docs/source/example_helloworld.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/example_helloworld.rst b/docs/source/example_helloworld.rst index a63d5b49fb..d90a2e3944 100644 --- a/docs/source/example_helloworld.rst +++ b/docs/source/example_helloworld.rst @@ -43,7 +43,7 @@ Let's create a simple Hello world application, with one Label and one Button. class HelloWorldScreen(GridLayout): counter = NumericProperty(0) def my_callback(self): - print 'The button have been pushed' + print 'The button has been pushed' self.counter += 1 class HelloWorldApp(App):