@@ -17,7 +17,7 @@ PYBIND11_MODULE(_tri, m) {
17
17
py::arg (" neighbors" ),
18
18
py::arg (" correct_triangle_orientations" ),
19
19
" Create a new C++ Triangulation object.\n "
20
- " This should not be called directly, instead use the python class\n "
20
+ " This should not be called directly, use the python class\n "
21
21
" matplotlib.tri.Triangulation instead.\n " )
22
22
.def (" calculate_plane_coefficients" , &Triangulation::calculate_plane_coefficients,
23
23
" Calculate plane equation coefficients for all unmasked triangles." )
@@ -34,7 +34,7 @@ PYBIND11_MODULE(_tri, m) {
34
34
py::arg (" triangulation" ),
35
35
py::arg (" z" ),
36
36
" Create a new C++ TriContourGenerator object.\n "
37
- " This should not be called directly, instead use the functions\n "
37
+ " This should not be called directly, use the functions\n "
38
38
" matplotlib.axes.tricontour and tricontourf instead.\n " )
39
39
.def (" create_contour" , &TriContourGenerator::create_contour,
40
40
" Create and return a non-filled contour." )
@@ -45,7 +45,7 @@ PYBIND11_MODULE(_tri, m) {
45
45
.def (py::init<Triangulation&>(),
46
46
py::arg (" triangulation" ),
47
47
" Create a new C++ TrapezoidMapTriFinder object.\n "
48
- " This should not be called directly, instead use the python class\n "
48
+ " This should not be called directly, use the python class\n "
49
49
" matplotlib.tri.TrapezoidMapTriFinder instead.\n " )
50
50
.def (" find_many" , &TrapezoidMapTriFinder::find_many,
51
51
" Find indices of triangles containing the point coordinates (x, y)." )
0 commit comments