Skip to content

Commit

Permalink
Minor updates in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
rahul4732saini committed Jul 23, 2024
1 parent c371a38 commit 2af31a0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fise/notify.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""

Expand Down
2 changes: 1 addition & 1 deletion fise/ospecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'."
)

Expand Down
2 changes: 1 addition & 1 deletion fise/query/operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2af31a0

Please sign in to comment.