docs: fix various typos (#3075)

Found via `codespell -q 3 -L nd,ot,thist`
This commit is contained in:
luzpaz
2021-07-04 19:58:35 -04:00
committed by GitHub
parent 795e3c4ce1
commit 8bee61b645
11 changed files with 11 additions and 11 deletions

View File

@@ -65,7 +65,7 @@ TEST_SUBMODULE(kwargs_and_defaults, m) {
#endif
m.def("arg_refcount_h", [](py::handle h) { GC_IF_NEEDED; return h.ref_count(); });
m.def("arg_refcount_h", [](py::handle h, py::handle, py::handle) { GC_IF_NEEDED; return h.ref_count(); });
// TODO replace the following nolints as appropiate
// TODO replace the following nolints as appropriate
// NOLINTNEXTLINE(performance-unnecessary-value-param)
m.def("arg_refcount_o", [](py::object o) { GC_IF_NEEDED; return o.ref_count(); });
m.def("args_refcount", [](py::args a) {