docs: Correct minor typos (#3721)

This commit is contained in:
Chris Ohk 2022-02-12 00:42:48 +09:00 committed by GitHub
parent 6493f496e3
commit 1a432b426f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@ import nox
nox.options.sessions = ["lint", "tests", "tests_packaging"] nox.options.sessions = ["lint", "tests", "tests_packaging"]
PYTHON_VERISONS = ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] PYTHON_VERSIONS = ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
@nox.session(reuse_venv=True) @nox.session(reuse_venv=True)
@ -14,7 +14,7 @@ def lint(session: nox.Session) -> None:
session.run("pre-commit", "run", "-a") session.run("pre-commit", "run", "-a")
@nox.session(python=PYTHON_VERISONS) @nox.session(python=PYTHON_VERSIONS)
def tests(session: nox.Session) -> None: def tests(session: nox.Session) -> None:
""" """
Run the tests (requires a compiler). Run the tests (requires a compiler).

View File

@ -452,7 +452,7 @@ TEST_SUBMODULE(sequences_and_iterators, m) {
[](IntPairs &self) { return py::make_value_iterator(self, py::call_guard<int>()); }, [](IntPairs &self) { return py::make_value_iterator(self, py::call_guard<int>()); },
py::keep_alive<0, 1>()); py::keep_alive<0, 1>());
// test_iterater_referencing // test_iterator_referencing
py::class_<NonCopyableInt>(m, "NonCopyableInt") py::class_<NonCopyableInt>(m, "NonCopyableInt")
.def(py::init<int>()) .def(py::init<int>())
.def("set", &NonCopyableInt::set) .def("set", &NonCopyableInt::set)

View File

@ -86,7 +86,7 @@ you can either use the basic targets, or use the FindPython tools:
set_target_properties(MyModule2 PROPERTIES set_target_properties(MyModule2 PROPERTIES
INTERPROCEDURAL_OPTIMIZATION ON INTERPROCEDURAL_OPTIMIZATION ON
CXX_VISIBILITY_PRESET ON CXX_VISIBILITY_PRESET ON
VISIBLITY_INLINES_HIDDEN ON) VISIBILITY_INLINES_HIDDEN ON)
If you build targets yourself, you may be interested in stripping the output If you build targets yourself, you may be interested in stripping the output
for reduced size; this is the one other feature that the helper function gives you. for reduced size; this is the one other feature that the helper function gives you.