Skip to content

Commit fef7f8b

Browse files
pstoecklenikolaik
authored andcommitted
chore: fix typos comments and outputs
1 parent 824dfcf commit fef7f8b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/docker_python_nodejs/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def run_release(args: CLIArgs) -> None:
5555

5656
def main(args: CLIArgs) -> None:
5757
if args.dry_run:
58-
logger.debug("Dry run, outputing only.")
58+
logger.debug("Dry run, outputting only.")
5959

6060
if args.command == "dockerfile":
6161
run_dockerfile(args)

src/docker_python_nodejs/nodejs_versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class NodeRelease(TypedDict):
1414

1515

1616
def fetch_node_releases() -> list[NodeRelease]:
17-
"""Fetch offical node releases"""
17+
"""Fetch official node releases"""
1818
url = "https://nodejs.org/dist/index.json"
1919
res = requests.get(url, timeout=10.0)
2020
res.raise_for_status()

0 commit comments

Comments
 (0)