Skip to content
Snippets Groups Projects
Commit f951d568 authored by Bas Nijholt's avatar Bas Nijholt
Browse files

correctly link 'adaptive.learner.triangulation.Triangulation' in the docs

parent ad7a3d23
No related branches found
No related tags found
No related merge requests found
Pipeline #12918 passed
......@@ -219,8 +219,8 @@ class LearnerND(BaseLearner):
@property
def tri(self):
"""A `adaptive.learner.Triangulation` instance with all the points
of the learner."""
"""An `adaptive.learner.triangulation.Triangulation` instance
with all the points of the learner."""
if self._tri is not None:
return self._tri
......@@ -230,8 +230,8 @@ class LearnerND(BaseLearner):
return self._tri
except ValueError:
# A ValueError is raised if we do not have enough points or
# the provided points are coplanar, so we need more points to create
# a valid triangulation
# the provided points are coplanar, so we need more points to
# create a valid triangulation
return None
@property
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment