Skip to content

Commit e0868b6

Browse files
authored
Fix typos (#839)
1 parent 7a77e80 commit e0868b6

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

nox/manifest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ def keyword_match(expression: str, keywords: Iterable[str]) -> Any:
358358

359359

360360
def _null_session_func_(session: Session) -> None:
361-
"""A no-op session for patemetrized sessions with no available params."""
361+
"""A no-op session for parametrized sessions with no available params."""
362362
session.skip("This session had no parameters available.")
363363

364364

nox/sessions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ def conda_install(
644644
not change the current channels. You can specify a list of channels if
645645
needed. It is highly recommended to specify this; micromamba does not
646646
set default channels, and default channels vary for conda. Note that
647-
"defaults" is also not permissivly licenced like "conda-forge" is.
647+
"defaults" is also not permissively licensed like "conda-forge" is.
648648
649649
Additional keyword args are the same as for :meth:`run`.
650650

tests/resources/noxfile_tags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ def one_tag(unused_session):
1414

1515

1616
@nox.session(tags=["tag1", "tag2", "tag3"])
17-
def moar_tags(unused_session):
17+
def more_tags(unused_session):
1818
print("Some more tags here.")

tests/test_toml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def test_load_multiple_script_block(tmp_path: Path) -> None:
101101
nox.project.load_toml(filepath)
102102

103103

104-
def test_load_non_recongnised_extension():
104+
def test_load_non_recognised_extension():
105105
msg = "Extension must be .py or .toml, got .txt"
106106
with pytest.raises(ValueError, match=msg):
107107
nox.project.load_toml("some.txt")

0 commit comments

Comments
 (0)