Commit 10e62e16 by Wenzel Jakob

fixed missing semicolon in documentation

parent b456ec78
......@@ -10,7 +10,7 @@ present:
#include <pybind11/pybind11.h>
namespace py = pybind11
namespace py = pybind11;
Operator overloading
====================
......
......@@ -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");
......
......@@ -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");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment