From 228bb1a3f44a9aa8469407e8e6c5a9d8f25775a5 Mon Sep 17 00:00:00 2001 From: freddii Date: Thu, 14 Jan 2021 11:18:42 +0100 Subject: [PATCH] fixed wrong spelled words --- README.md | 2 +- bauh/api/abstract/handler.py | 2 +- bauh/gems/arch/controller.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ad27049a..93108283 100644 --- a/README.md +++ b/README.md @@ -184,7 +184,7 @@ database: - **synchronize packages database**: synchronizes the database against the configured mirrors (`sudo pacman -Syy`) - **refresh mirrors**: allows the user to define multiple mirrors locations and sort by the fastest (`sudo pacman-mirrors -c country1,country2 && sudo pacman-mirrors --fasttrack 5 && sudo pacman -Syy`) - **quick system upgrade**: it executes a default pacman upgrade (`pacman -Syyu --noconfirm`) - - **clean cache**: it cleans the pacman cache diretory (default: `/var/cache/pacman/pkg`) + - **clean cache**: it cleans the pacman cache directory (default: `/var/cache/pacman/pkg`) - **mark PKGBUILD as editable**: it marks a given PKGBUILD of a package as editable (a popup with the PKGBUILD will be displayed before upgrading/downgrading this package). Action only available when the configuration property **edit_aur_pkgbuild** is not **false**. - **unmark PKGBUILD as editable**: reverts the action described above. Action only available when the configuration property **edit_aur_pkgbuild** is not **false**. - **check Snaps support**: checks if the Snapd services are properly enabled. diff --git a/bauh/api/abstract/handler.py b/bauh/api/abstract/handler.py index de1cf4aa..3ecb763b 100644 --- a/bauh/api/abstract/handler.py +++ b/bauh/api/abstract/handler.py @@ -5,7 +5,7 @@ from bauh.api.abstract.view import MessageType, ViewComponent class ProcessWatcher: """ - Represents an view component watching background processes. It's a bridge for ApplicationManager instances notifiy the view of processes progression and also + Represents an view component watching background processes. It's a bridge for ApplicationManager instances notify the view of processes progression and also request any user interaction without the need of knowing any GUI code. """ diff --git a/bauh/gems/arch/controller.py b/bauh/gems/arch/controller.py index e8ec10a2..b14989aa 100644 --- a/bauh/gems/arch/controller.py +++ b/bauh/gems/arch/controller.py @@ -1071,7 +1071,7 @@ class ArchManager(SoftwareManager): return True except: - self.logger.error("An error occured while removing packages: {}".format(', '.join(to_remove))) + self.logger.error("An error occurred while removing packages: {}".format(', '.join(to_remove))) traceback.print_exc() output_handler.stop_working() output_handler.join()