Skip to content

Commit

Permalink
[DATALAD RUNCMD] run codespell throughout fixing typo automagically
Browse files Browse the repository at this point in the history
=== Do not change lines below ===
{
 "chain": [],
 "cmd": "codespell -w",
 "exit": 0,
 "extra_inputs": [],
 "inputs": [],
 "outputs": [],
 "pwd": "."
}
^^^ Do not change lines above ^^^
  • Loading branch information
yarikoptic committed Feb 12, 2024
1 parent e80be65 commit 2dd4d76
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion 0.2/index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ It SHOULD contain the field "metadata", which contains a dictionary with additio
],
"type": "gaussian",
"metadata": { # the fields in metadata depend on the downscaling implementation
"method": "skimage.transform.pyramid_gaussian", # here, the paramters passed to the skimage function are given
"method": "skimage.transform.pyramid_gaussian", # here, the parameters passed to the skimage function are given
"version": "0.16.1",
"args": "[true]",
"kwargs": {"multichannel": true}
Expand Down
2 changes: 1 addition & 1 deletion 0.3/index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ It SHOULD contain the field "metadata", which contains a dictionary with additio
],
"type": "gaussian",
"metadata": { # the fields in metadata depend on the downscaling implementation
"method": "skimage.transform.pyramid_gaussian", # here, the paramters passed to the skimage function are given
"method": "skimage.transform.pyramid_gaussian", # here, the parameters passed to the skimage function are given
"version": "0.16.1",
"args": "[true]",
"kwargs": {"multichannel": true}
Expand Down
6 changes: 3 additions & 3 deletions 0.4/index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ be optional (MAY). Examples of transitional metadata include custom additions by
implementations that are later submitted as a formal specification. (See [[#bf2raw]])
</p>

Some of the JSON examples in this document include commments. However, these are only for
Some of the JSON examples in this document include comments. However, these are only for
clarity purposes and comments MUST NOT be included in JSON objects.

On-disk (or in-cloud) layout {#on-disk}
Expand Down Expand Up @@ -544,15 +544,15 @@ other `name` in the `rows` list. Care SHOULD be taken to avoid collisions on
case-insensitive filesystems (e.g. avoid using both `Aa` and `aA`).

The `plate` dictionary SHOULD contain a `version` key whose value MUST be a string specifying the
version of the plate specificaton.
version of the plate specification.

The `plate` dictionary MUST contain a `wells` key whose value MUST be a list of JSON objects
defining the wells of the plate. Each well object MUST contain a `path` key whose value MUST
be a string specifying the path to the well subgroup. The `path` MUST consist of a `name` in
the `rows` list, a file separator (`/`), and a `name` from the `columns` list, in that order.
The `path` MUST NOT contain additional leading or trailing directories.
Each well object MUST contain both a `rowIndex` key whose value MUST be an integer identifying
the index into the `rows` list and a `columnIndex` key whose value MUST be an integer indentifying
the index into the `rows` list and a `columnIndex` key whose value MUST be an integer identifying
the index into the `columns` list. `rowIndex` and `columnIndex` MUST be 0-based. The
`rowIndex`, `columnIndex`, and `path` MUST all refer to the same row/column pair.

Expand Down
2 changes: 1 addition & 1 deletion 0.4/tests/test_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def pytest_generate_tests(metafunc):
Generates tests for the examples/ as well as tests/ subdirectories.
Examples:
These tests evalute all of the files under the examples/ directory
These tests evaluate all of the files under the examples/ directory
using the configuration in the provided config file in order detect
what should be run. It is assumed that all files are valid and complete
so that they can be wholly included into the specification. The
Expand Down
4 changes: 2 additions & 2 deletions latest/index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ be optional (MAY). Examples of transitional metadata include custom additions by
implementations that are later submitted as a formal specification. (See [[#bf2raw]])
</p>

Some of the JSON examples in this document include commments. However, these are only for
Some of the JSON examples in this document include comments. However, these are only for
clarity purposes and comments MUST NOT be included in JSON objects.

On-disk (or in-cloud) layout {#on-disk}
Expand Down Expand Up @@ -501,7 +501,7 @@ be a string specifying the path to the well subgroup. The `path` MUST consist of
the `rows` list, a file separator (`/`), and a `name` from the `columns` list, in that order.
The `path` MUST NOT contain additional leading or trailing directories.
Each well object MUST contain both a `rowIndex` key whose value MUST be an integer identifying
the index into the `rows` list and a `columnIndex` key whose value MUST be an integer indentifying
the index into the `rows` list and a `columnIndex` key whose value MUST be an integer identifying
the index into the `columns` list. `rowIndex` and `columnIndex` MUST be 0-based. The
`rowIndex`, `columnIndex`, and `path` MUST all refer to the same row/column pair.

Expand Down
2 changes: 1 addition & 1 deletion latest/tests/test_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def pytest_generate_tests(metafunc):
Generates tests for the examples/ as well as tests/ subdirectories.
Examples:
These tests evalute all of the files under the examples/ directory
These tests evaluate all of the files under the examples/ directory
using the configuration in the provided config file in order detect
what should be run. It is assumed that all files are valid and complete
so that they can be wholly included into the specification. The
Expand Down

0 comments on commit 2dd4d76

Please sign in to comment.