Skip to content

Commit f951d56

Browse files
committed
correctly link 'adaptive.learner.triangulation.Triangulation' in the docs
1 parent ad7a3d2 commit f951d56

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

adaptive/learner/learnerND.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -219,8 +219,8 @@ def ip(self):
219219

220220
@property
221221
def tri(self):
222-
"""A `adaptive.learner.Triangulation` instance with all the points
223-
of the learner."""
222+
"""An `adaptive.learner.triangulation.Triangulation` instance
223+
with all the points of the learner."""
224224
if self._tri is not None:
225225
return self._tri
226226

@@ -230,8 +230,8 @@ def tri(self):
230230
return self._tri
231231
except ValueError:
232232
# A ValueError is raised if we do not have enough points or
233-
# the provided points are coplanar, so we need more points to create
234-
# a valid triangulation
233+
# the provided points are coplanar, so we need more points to
234+
# create a valid triangulation
235235
return None
236236

237237
@property

0 commit comments

Comments
 (0)