diff --git a/fise/notify.py b/fise/notify.py index a647870..fcb9dfd 100644 --- a/fise/notify.py +++ b/fise/notify.py @@ -2,7 +2,7 @@ Notify Module ------------- -This modules comprises class for displaying alerts +This module comprises class for displaying alerts and notifications on the command-line interface. """ diff --git a/fise/ospecs.py b/fise/ospecs.py index 94a26e0..4d199a5 100644 --- a/fise/ospecs.py +++ b/fise/ospecs.py @@ -25,7 +25,7 @@ def _field_extraction_alert() -> None: return Alert( - "ExtractionError: Unable to access specific metdata fields from the " + "ExtractionError: Unable to access specific metadata fields from the " "recorded files/directories. These fields are being assigned as 'None'." ) diff --git a/fise/query/operators.py b/fise/query/operators.py index bd023c8..104771c 100644 --- a/fise/query/operators.py +++ b/fise/query/operators.py @@ -101,7 +101,7 @@ def remove_files(self, condition: Callable[[File], bool], skip_err: bool) -> Non # the number of skipped files if `skip_err` is set to `True`. ctr = skipped = 0 - # Iterates through the files and deletes indivdually if the condition is met. + # Iterates through the files and deletes individually if the condition is met. for file in tools.get_files(self._directory, self._recursive): if not condition(File(file)): continue