Skip to content
Snippets Groups Projects
Verified Commit 155d92ec authored by Justin Carpentier's avatar Justin Carpentier
Browse files

core: fix doc message

parent c75eb13c
No related branches found
No related tags found
No related merge requests found
...@@ -48,13 +48,13 @@ namespace eigenpy ...@@ -48,13 +48,13 @@ namespace eigenpy
bp::def("sharedMemory", bp::def("sharedMemory",
(void (*)(const bool))NumpyType::sharedMemory, (void (*)(const bool))NumpyType::sharedMemory,
bp::arg("value"), bp::arg("value"),
"Share the memory when converting Eigen::Matrix to numpy.array."); "Share the memory when converting from Eigen to Numpy.");
bp::def("sharedMemory", bp::def("sharedMemory",
(bool (*)())NumpyType::sharedMemory, (bool (*)())NumpyType::sharedMemory,
"Status of the shared memory when converting Eigen::Matrix to numpy.array.\n" "Status of the shared memory when converting from Eigen to Numpy.\n"
"If True, the memory is shared when converting an Eigen::Matrix to a numpy.array.\n" "If True, the memory is shared when converting an Eigen::Matrix to a numpy.array.\n"
"Otherwise, a deep copy of the Eigen::Matrix is performed"); "Otherwise, a deep copy of the Eigen::Matrix is performed.");
bp::def("seed",&seed,bp::arg("seed_value"), bp::def("seed",&seed,bp::arg("seed_value"),
"Initialize the pseudo-random number generator with the argument seed_value."); "Initialize the pseudo-random number generator with the argument seed_value.");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment