Skip to content

Commit

Permalink
typo fixes (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-williams authored Sep 16, 2024
1 parent 30764e6 commit 4b2ccca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python-spec/src/somacore/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def create(
shape: The maximum capacity of each dimension, including room
for any intended future appends, specified as one element
per dimension, e.g. ``(100, 10)``. All lengths must be in
the postive int64 range, or ``None``. It's necessary to say
the positive int64 range, or ``None``. It's necessary to say
``shape=(None, None)`` or ``shape=(None, None, None)``,
as the sequence length determines the number of dimensions
(N) in the N-dimensional array.
Expand Down
4 changes: 2 additions & 2 deletions python-spec/src/somacore/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def _validate(self, attr: attrs.Attribute, value):
- If an implementation-specific object, that implementation will use that object
for configuration data; it will be ignored by others.
See the "Per-call configuration" section of the main SOMA specifiction.
See the "Per-call configuration" section of the main SOMA specification.
"""


Expand Down Expand Up @@ -176,6 +176,6 @@ class ResultOrder(enum.Enum):
pa.IntegerArray,
pa.ChunkedArray,
]
"""A single coordinate range for one dimension of a sparse nd-array."""
"""A single coordinate range for one dimension of a sparse ndarray."""
SparseNDCoords = Sequence[SparseNDCoord]
"""A sequence of coordinate ranges for reading sparse ndarrays."""

0 comments on commit 4b2ccca

Please sign in to comment.