Minor fixes (#613)
* Minor doc syntax fix
The numpy documentation had a bad :file: reference (was using double
backticks instead of single backticks).
* Changed long-outdated "example" -> "tests" wording
The ConstructorStats internal docs still had "from example import", and
the main testing cpp file still used "example" in the module
description.
diff --git a/tests/pybind11_tests.cpp b/tests/pybind11_tests.cpp
index 9c593ee..4646ce1 100644
--- a/tests/pybind11_tests.cpp
+++ b/tests/pybind11_tests.cpp
@@ -32,7 +32,7 @@
}
PYBIND11_PLUGIN(pybind11_tests) {
- py::module m("pybind11_tests", "pybind example plugin");
+ py::module m("pybind11_tests", "pybind testing plugin");
bind_ConstructorStats(m);