last breaking change: be consistent about the project name

This commit is contained in:
Wenzel Jakob
2015-10-15 18:13:33 +02:00
parent 607654f7ec
commit 8f4eb00690
23 changed files with 164 additions and 162 deletions

View File

@@ -23,12 +23,12 @@ The binding code for ``Pet`` looks as follows:
.. code-block:: cpp
#include <pybind/pybind.h>
#include <pybind11/pybind11.h>
namespace py = pybind;
namespace py = pybind11
PYBIND_PLUGIN(example) {
py::module m("example", "pybind example plugin");
py::module m("example", "pybind11 example plugin");
py::class_<Pet>(m, "Pet")
.def(py::init<const std::string &>())