Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix a few simple typos #1327

Merged
merged 1 commit into from
Aug 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildozer/target.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def install_or_update_repo(self, repo, **kwargs):

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:
Expand Down
2 changes: 1 addition & 1 deletion buildozer/targets/android.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def p4a_dir(self):
# 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)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_buildozer.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def set_specfile_log_level(cls, specfilename, log_level):

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'
Expand Down