Skip to content

Commit 980055e

Browse files
committed
core: minor fix
1 parent 4ba344d commit 980055e

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

python/main.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,7 @@ BOOST_PYTHON_MODULE(eigenpy)
5151
"Returns True if A is approximately equal to B, within the precision determined by prec.");
5252
bp::def("is_approx",(bool (*)(const MatrixXd &, const MatrixXd &))&is_approx<MatrixXd,MatrixXd>,
5353
bp::args("A","B"),
54-
"Returns True if A is approximately equal to B..");
55-
56-
// EXPOSE_IS_APPROX(MatrixXd);
57-
// EXPOSE_IS_APPROX(MatrixXf);
54+
"Returns True if A is approximately equal to B.");
5855
}
5956

6057
exposeDecompositions();

0 commit comments

Comments
 (0)