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):