Skip to content

Commit

Permalink
Fix typos (#350)
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
JWCook committed Dec 5, 2023
2 parents 34b2ba5 + 8911756 commit 8ac3a92
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Platform-specific installation instructions are below:
<!-- TODO: portable (.tar.gz) download links & instructions -->

```{warning}
These packages and installers are brand new, and not yet throughly tested on all platforms.
These packages and installers are brand new, and not yet thoroughly tested on all platforms.
Please [create a bug report](https://github.com/pyinat/naturtag/issues/new) if you find any issues!
```

Expand Down
2 changes: 1 addition & 1 deletion docs/metadata.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ For example, some tools may use EXIF only, while others may use a combination of

### Sidecar files
A sidecar file can be saved alongside a photo that contains all XMP metadata.
This has the advantage of non-desctructive edits (not needing to modify the original image file),
This has the advantage of non-destructive edits (not needing to modify the original image file),
and also lets you associate the metadata with a RAW image file.

The sidecar will have the same filename as the image, but with a `.xmp` extension. For example:
Expand Down
2 changes: 1 addition & 1 deletion naturtag/app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def __init__(self, app: NaturtagApp):
)
self.tabs.setTabVisible(self.log_tab_idx, self.app.settings.show_logs)

# Switch to differet tab if requested from Photos tab
# Switch to different tab if requested from Photos tab
self.image_controller.on_select_taxon_tab.connect(
lambda: self.tabs.setCurrentWidget(self.taxon_controller)
)
Expand Down
2 changes: 1 addition & 1 deletion naturtag/metadata/inat_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def observation_to_metadata(
metadata.update_keywords(keywords)

# Convert and add coordinates
# TODO: Add other metdata like title, description, tags, etc.
# TODO: Add other metadata like title, description, tags, etc.
if observation:
metadata.update_coordinates(observation.location, observation.positional_accuracy)

Expand Down
2 changes: 1 addition & 1 deletion naturtag/metadata/meta_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def simplify_keys(mapping: dict[str, str]) -> dict[str, str]:
Simplify/deduplicate dict keys, to reduce variations in similarly-named keys
Example::
>>> simplify_keys({'my_namepace:Sub_Family': 'Panorpinae'})
>>> simplify_keys({'my_namespace:Sub_Family': 'Panorpinae'})
{'subfamily': 'Panorpinae'}
Returns:
Expand Down
2 changes: 1 addition & 1 deletion naturtag/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def user_taxa_path(self) -> Path:

@property
def start_image_dir(self) -> Path:
"""Get the starting directory for image selection, depeding on settings"""
"""Get the starting directory for image selection, depending on settings"""
if self.use_last_dir and self.recent_image_dirs:
return self.recent_image_dirs[0]
else:
Expand Down

0 comments on commit 8ac3a92

Please sign in to comment.