Skip to content

Commit 2a45049

Browse files
authored
Fix simple typos in comments (kivy#2863)
One typo I introduced while trying to fix the other.
1 parent ad117be commit 2a45049

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ to install and begin creating APKs and AABs.
3939

4040
(for the develop branch: `pip install git+https://github.com/kivy/python-for-android.git`)
4141

42-
Test that theinstall works with:
42+
Test that the install works with:
4343

4444
p4a --version
4545

pythonforandroid/pythonpackage.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
Usage examples:
55
66
# Getting package name from pip reference:
7-
from pytonforandroid.pythonpackage import get_package_name
7+
from pythonforandroid.pythonpackage import get_package_name
88
print(get_package_name("pillow"))
99
# Outputs: "Pillow" (note the spelling!)
1010
1111
# Getting package dependencies:
12-
from pytonforandroid.pythonpackage import get_package_dependencies
12+
from pythonforandroid.pythonpackage import get_package_dependencies
1313
print(get_package_dependencies("pep517"))
1414
# Outputs: "['pytoml']"
1515
1616
# Get package name from arbitrary package source:
17-
from pytonforandroid.pythonpackage import get_package_name
17+
from pythonforandroid.pythonpackage import get_package_name
1818
print(get_package_name("/some/local/project/folder/"))
1919
# Outputs package name
2020

0 commit comments

Comments
 (0)