Skip to content

Commit

Permalink
style: corrected spelling mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
janezlapajne committed Jun 29, 2024
1 parent 4535359 commit 2045e94
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
We as members, contributors, and leaders pledge to make participation in our
community a harassment-free experience for everyone, regardless of age, body
size, visible or invisible disability, ethnicity, sex characteristics, gender
identity and expression, level of experience, education, socio-economic status,
identity and expression, level of experience, education, socioeconomic status,
nationality, personal appearance, race, religion, or sexual identity
and orientation.

Expand Down
2 changes: 1 addition & 1 deletion siapy/entities/pixels.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class Coordinates(NamedTuple):
U: Annotated[str, "u - x coordinate on the image"] = "u"
V: Annotated[str, "v - y coordinate on the image"] = "v"
H: Annotated[str, "h - homogenious coordinate"] = "h"
H: Annotated[str, "h - homogeneous coordinate"] = "h"


@dataclass
Expand Down
2 changes: 1 addition & 1 deletion siapy/utils/validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def validate_image_to_numpy_3channels(image: ImageType) -> np.ndarray:
image_display = image.copy()
else:
raise ValueError(
"Argument image must be convertable to numpy array with 3 channels."
"Argument image must be convertible to numpy array with 3 channels."
)
return image_display

Expand Down

0 comments on commit 2045e94

Please sign in to comment.