summaryrefslogtreecommitdiff
path: root/python/_phat.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'python/_phat.cpp')
-rw-r--r--python/_phat.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/python/_phat.cpp b/python/_phat.cpp
index c43a3f5..40a9421 100644
--- a/python/_phat.cpp
+++ b/python/_phat.cpp
@@ -119,8 +119,7 @@ void wrap_boundary_matrix(py::module &mod, const std::string &representation_suf
//Note that boundary_matrix dimensions are not normal matrix dimensions,
//They refer to the dimension of the simplex stored in the given column.
.def("get_dim", &mat::get_dim,
- "Get the dimension list for this boundary matrix. "
- "The dimension list shows the dimension for each column in the matrix")
+ "Get the dimension for the requested column.")
.def("set_dim", &mat::set_dim, "Set the dimension for a single column",
py::arg("index"), py::arg("dimension"))
//The `set_dims` method is an example of making the data structure easier to use