Skip to content

Commit

Permalink
fixed missing semicolon in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Wenzel Jakob committed Oct 15, 2015
1 parent b456ec7 commit 10e62e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/advanced.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ present:
#include <pybind11/pybind11.h>
namespace py = pybind11
namespace py = pybind11;
Operator overloading
====================
Expand Down
2 changes: 1 addition & 1 deletion docs/basics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
2 changes: 1 addition & 1 deletion docs/classes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 10e62e1

Please sign in to comment.