Skip to content

Commit 8a15c89

Browse files
committed
[DATALAD RUNCMD] chore: run codespell throughout fixing a few new typos automagically
=== Do not change lines below === { "chain": [], "cmd": "codespell -w", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^ Signed-off-by: Yaroslav Halchenko <debian@onerussian.com>
1 parent 473d38d commit 8a15c89

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/getting_started/developer-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ $ pip install -e .
124124

125125
# Now docs dependencies
126126
cd docs
127-
pip install -r requrements.txt
127+
pip install -r requirements.txt
128128

129129
# Build the docs into _build/html
130130
make html

docs/getting_started/user-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ or jump to our [developer guide](developer-guide.md) to learn about running test
1111
or contributing to the project. If you want to create your own client, you likely want to:
1212

1313

14-
1. Start a local registry (described below), or have access to an ORAS [supported registry](https://oras.land/implementors/#docker-distribution)
14+
1. Start a local registry (described below), or have access to an ORAS [supported registry](https://oras.land/implementers/#docker-distribution)
1515
2. Decide on the context for your code (e.g., it's easy to start with Python functions in a single file and move to a client setup if appropriate for your tool)
1616
3. Subclass the `oras.provider.Registry` for your custom class (examples below!)
1717
4. Add custom functions to push, pull, or create manifests / layers

oras/container.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def __init__(self, name: str, registry: Optional[str] = None):
3030
"""
3131
self.registry = registry or oras.defaults.registry.index_name
3232

33-
# Registry is the name takes precendence
33+
# Registry is the name takes precedence
3434
self.parse(name)
3535

3636
@property

oras/utils/fileio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ def write_file(
255255
"""
256256
Write content to a filename
257257
258-
:param filename: filname to write
258+
:param filename: filename to write
259259
:type filename: str
260260
:param content: content to write
261261
:type content: str

0 commit comments

Comments
 (0)