-
Notifications
You must be signed in to change notification settings - Fork 536
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
Fix many typos #1692
Fix many typos #1692
Conversation
Please rebase this against |
@goggle any chance you could update the PR with latest master? |
Signed-off-by: Alexander Seiler <[email protected]>
@Torxed @svartkanin Here is an updated version of this PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was randomly reading some PRs and found yours, looks good tbh
@@ -119,7 +119,7 @@ def setup_selection_menu_options(self): | |||
self._menu_options['parallel downloads'] = \ | |||
Selector( | |||
_('Parallel Downloads'), | |||
lambda preset: add_number_of_parrallel_downloads(preset), | |||
lambda preset: add_number_of_parallel_downloads(preset), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we pass the method reference instead of a lambda?
lambda preset: add_number_of_parallel_downloads(preset), | |
add_number_of_parallel_downloads, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will the preset
be preserved in the way we call the function at a later stage?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we do it the same way with most other settings as well, I don't think it makes much difference
PR Description:
Corrects various typos that I've found in the repository. Please double-check that I haven't forgotten to adapt any method calls for the corrected method name definitions.
Tests and Checks