Merge pull request #1327 from timgates42/bugfix_typos

docs: fix a few simple typos
This commit is contained in:
Akshay Arora 2021-08-17 15:39:30 +05:30 committed by GitHub
commit 2464434e4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -234,7 +234,7 @@ class Target:
This will clone the contents of a git repository to
`buildozer.platform_dir`. The location of this repo can be
speficied via URL and branch name, or via a custom (local)
specified via URL and branch name, or via a custom (local)
directory name.
:Parameters:

View file

@ -120,7 +120,7 @@ class TargetAndroid(Target):
# Default p4a dir
p4a_dir = join(self.buildozer.platform_dir, self.p4a_directory_name)
# Possibly overriden by user setting
# Possibly overridden by user setting
system_p4a_dir = self.buildozer.config.getdefault('app', 'p4a.source_dir')
if system_p4a_dir:
p4a_dir = expanduser(system_p4a_dir)

View file

@ -61,7 +61,7 @@ class TestBuildozer(unittest.TestCase):
def test_buildozer_base(self):
"""
Basic test making sure the Buildozer object can be instanciated.
Basic test making sure the Buildozer object can be instantiated.
"""
buildozer = Buildozer()
assert buildozer.specfilename == 'buildozer.spec'