Skip to content

Commit 155d92e

Browse files
committed
core: fix doc message
1 parent c75eb13 commit 155d92e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/eigenpy.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ namespace eigenpy
4848
bp::def("sharedMemory",
4949
(void (*)(const bool))NumpyType::sharedMemory,
5050
bp::arg("value"),
51-
"Share the memory when converting Eigen::Matrix to numpy.array.");
51+
"Share the memory when converting from Eigen to Numpy.");
5252

5353
bp::def("sharedMemory",
5454
(bool (*)())NumpyType::sharedMemory,
55-
"Status of the shared memory when converting Eigen::Matrix to numpy.array.\n"
55+
"Status of the shared memory when converting from Eigen to Numpy.\n"
5656
"If True, the memory is shared when converting an Eigen::Matrix to a numpy.array.\n"
57-
"Otherwise, a deep copy of the Eigen::Matrix is performed");
57+
"Otherwise, a deep copy of the Eigen::Matrix is performed.");
5858

5959
bp::def("seed",&seed,bp::arg("seed_value"),
6060
"Initialize the pseudo-random number generator with the argument seed_value.");

0 commit comments

Comments
 (0)