Update line number refs (& remove one unclear one) (#7625)

This commit is contained in:
Geo Maciolek 2021-09-19 11:40:08 -04:00 committed by GitHub
parent d1b7f415b8
commit 0ca10a893f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ First off, let's get familiar with the Kivy app life cycle.
As you can see above, for all intents and purposes, our entry point into our App
is the run() method, and in our case that is "MyApp().run()". We will get back
to this, but let's start from the third line::
to this, but let's start from the line::
from kivy.app import App
@ -108,7 +108,7 @@ This Label will be the Root Widget of this App.
.. Note::
Python uses indentation to denote code blocks, therefore take note that in
the code provided above, at line 12 the class and function definition ends.
the code provided above, at line 11 the class and function definition ends.
Now on to the portion that will make our app run at line 14 and 15::