Skip to content

Commit eea8f1a

Browse files
committed
Fix some minor typos in qhull.
1 parent a051169 commit eea8f1a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/qhull_wrap.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,14 @@ at_least_3_unique_points(int npoints, const double* x, const double* y)
8282
return 0;
8383
}
8484

85-
/* Delaunay implementation methyod. If hide_qhull_errors is 1 then qhull error
85+
/* Delaunay implementation method. If hide_qhull_errors is 1 then qhull error
8686
* messages are discarded; if it is 0 then they are written to stderr. */
8787
static PyObject*
8888
delaunay_impl(int npoints, const double* x, const double* y,
8989
int hide_qhull_errors)
9090
{
91-
qhT qh_qh; /* qh variable type and name must be like */
92-
qhT* qh = &qh_qh; /* this for Qhull macros to work correctly. */
91+
qhT qh_qh; /* qh variable type and name must be like */
92+
qhT* qh = &qh_qh; /* this for Qhull macros to work correctly. */
9393
coordT* points = NULL;
9494
facetT* facet;
9595
int i, ntri, max_facet_id;
@@ -182,7 +182,7 @@ delaunay_impl(int npoints, const double* x, const double* y,
182182
goto error;
183183
}
184184

185-
/* Allocate python arrays to return. */
185+
/* Allocate Python arrays to return. */
186186
dims[0] = ntri;
187187
dims[1] = 3;
188188
triangles = (PyArrayObject*)PyArray_SimpleNew(ndim, dims, NPY_INT);
@@ -259,7 +259,7 @@ delaunay_impl(int npoints, const double* x, const double* y,
259259
return NULL;
260260
}
261261

262-
/* Process python arguments and call Delaunay implementation method. */
262+
/* Process Python arguments and call Delaunay implementation method. */
263263
static PyObject*
264264
delaunay(PyObject *self, PyObject *args)
265265
{

0 commit comments

Comments
 (0)