Skip to content

Commit 28f3df7

Browse files
ibelljagerman
authored andcommitted
Fix typo in embedding.rst
1 parent d080f83 commit 28f3df7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/advanced/embedding.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Python modules can be imported using `module::import()`:
111111
.. code-block:: cpp
112112
113113
py::module sys = py::module::import("sys");
114-
py::print(sys.attr("path"))
114+
py::print(sys.attr("path"));
115115
116116
For convenience, the current working directory is included in ``sys.path`` when
117117
embedding the interpreter. This makes it easy to import local Python files:

0 commit comments

Comments
 (0)