Skip to content

Commit e6cba0f

Browse files
committed
typing typos :)
1 parent 34ed752 commit e6cba0f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/compas_cgal/triangulation.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def delaunay_triangulation(points):
99
1010
Parameters
1111
----------
12-
points : list of :class:`~compas.geometry.Point`
12+
points : list[:class:`~compas.geometry.Point`]
1313
Points of the triangulation.
1414
1515
Returns
@@ -41,11 +41,11 @@ def constrained_delaunay_triangulation(boundary, points=None, holes=None, curves
4141
----------
4242
boundary : :class:`~compas.geometry.Polygon`
4343
The boundary of the triangulation.
44-
points : list of :class:`~compas.geometry.Point`, optional
44+
points : list[:class:`~compas.geometry.Point`], optional
4545
Additional internal points.
46-
holes : list of :class:`~compas.geometry.Polygon`, optional
46+
holes : list[:class:`~compas.geometry.Polygon`], optional
4747
Internal boundary polygons.
48-
curves : list of :class:`~compas.geometry.Polyline`, optional
48+
curves : list[:class:`~compas.geometry.Polyline`], optional
4949
Internal constraint curves.
5050
5151
Returns

0 commit comments

Comments
 (0)