diff --git a/src/eigenpy.cpp b/src/eigenpy.cpp index 9fac52ae27774ee8b07a246d9f53709204216fb8..805581fca167dba9588500765f37b66aed62f58a 100644 --- a/src/eigenpy.cpp +++ b/src/eigenpy.cpp @@ -48,13 +48,13 @@ namespace eigenpy bp::def("sharedMemory", (void (*)(const bool))NumpyType::sharedMemory, 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", (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" - "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"), "Initialize the pseudo-random number generator with the argument seed_value.");