Skip to content

Commit 5327c19

Browse files
utilForeverhenryiii
authored andcommitted
docs: Correct minor typos (#3721)
1 parent 8c859e4 commit 5327c19

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
nox.options.sessions = ["lint", "tests", "tests_packaging"]
44

5-
PYTHON_VERISONS = ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
5+
PYTHON_VERSIONS = ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
66

77

88
@nox.session(reuse_venv=True)
@@ -14,7 +14,7 @@ def lint(session: nox.Session) -> None:
1414
session.run("pre-commit", "run", "-a")
1515

1616

17-
@nox.session(python=PYTHON_VERISONS)
17+
@nox.session(python=PYTHON_VERSIONS)
1818
def tests(session: nox.Session) -> None:
1919
"""
2020
Run the tests (requires a compiler).

tests/test_sequences_and_iterators.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ TEST_SUBMODULE(sequences_and_iterators, m) {
452452
[](IntPairs &self) { return py::make_value_iterator(self, py::call_guard<int>()); },
453453
py::keep_alive<0, 1>());
454454

455-
// test_iterater_referencing
455+
// test_iterator_referencing
456456
py::class_<NonCopyableInt>(m, "NonCopyableInt")
457457
.def(py::init<int>())
458458
.def("set", &NonCopyableInt::set)

tools/pybind11Config.cmake.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ you can either use the basic targets, or use the FindPython tools:
8888
set_target_properties(MyModule2 PROPERTIES
8989
INTERPROCEDURAL_OPTIMIZATION ON
9090
CXX_VISIBILITY_PRESET ON
91-
VISIBLITY_INLINES_HIDDEN ON)
91+
VISIBILITY_INLINES_HIDDEN ON)
9292
9393
If you build targets yourself, you may be interested in stripping the output
9494
for reduced size; this is the one other feature that the helper function gives you.

0 commit comments

Comments
 (0)