fixed missing semicolon in documentation

This commit is contained in:
Wenzel Jakob 2015-10-15 22:46:07 +02:00
parent b456ec789d
commit 10e62e168b
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ present:
#include <pybind11/pybind11.h>
namespace py = pybind11
namespace py = pybind11;
Operator overloading
====================

View File

@ -85,7 +85,7 @@ a file named :file:`example.cpp` with the following contents:
return i + j;
}
namespace py = pybind11
namespace py = pybind11;
PYBIND_PLUGIN(example) {
py::module m("example", "pybind11 example plugin");

View File

@ -25,7 +25,7 @@ The binding code for ``Pet`` looks as follows:
#include <pybind11/pybind11.h>
namespace py = pybind11
namespace py = pybind11;
PYBIND_PLUGIN(example) {
py::module m("example", "pybind11 example plugin");