From 10e62e168b95f621a491440d7c5acaf7b9a70fd8 Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Thu, 15 Oct 2015 22:46:07 +0200 Subject: [PATCH] fixed missing semicolon in documentation --- docs/advanced.rst | 2 +- docs/basics.rst | 2 +- docs/classes.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/advanced.rst b/docs/advanced.rst index 577bc04c..9c07e4f0 100644 --- a/docs/advanced.rst +++ b/docs/advanced.rst @@ -10,7 +10,7 @@ present: #include - namespace py = pybind11 + namespace py = pybind11; Operator overloading ==================== diff --git a/docs/basics.rst b/docs/basics.rst index b55d402d..3d281d64 100644 --- a/docs/basics.rst +++ b/docs/basics.rst @@ -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"); diff --git a/docs/classes.rst b/docs/classes.rst index 5ef042cc..a7c75d83 100644 --- a/docs/classes.rst +++ b/docs/classes.rst @@ -25,7 +25,7 @@ The binding code for ``Pet`` looks as follows: #include - namespace py = pybind11 + namespace py = pybind11; PYBIND_PLUGIN(example) { py::module m("example", "pybind11 example plugin");