diff --git a/python_binding/graph/pybind_GraphView.cpp b/python_binding/graph/pybind_GraphView.cpp
index 5dc8a1a4012b120be8362328ee61b4e5fa9b73f3..e962a39194bddc24b454b6934191f8b845861ba1 100644
--- a/python_binding/graph/pybind_GraphView.cpp
+++ b/python_binding/graph/pybind_GraphView.cpp
@@ -149,8 +149,8 @@ void init_GraphView(py::module& m) {
           the graph and connects it if that makes sense without ambiguity (effectively treating the removed Node as an
           identity operation).
 
-          :param cloneNode Callback function to clone a node
-          :type cloneNode Node
+          :param cloneNode: Callback function to clone a node
+          :type cloneNode: Node
           :return: Cloned GraphView
           :rtype: GraphView
           )mydelimiter")
@@ -164,8 +164,8 @@ void init_GraphView(py::module& m) {
           R"mydelimiter(
           Get the Node with the corresponding name if it is in the GraphView.
 
-          :param node_name The name of the Node
-          :type string
+          :param node_name: The name of the Node
+          :type node_name: string
           :return: The Node of the GraphView with corresponding name
           :rtype: Node
           )mydelimiter")