diff --git a/pytools/tag.py b/pytools/tag.py index 42d9e50f33f4e4a8868733c8ace15b63f0c67c5e..47b00f7dacbc54824175d1ccedd820d86c230318 100644 --- a/pytools/tag.py +++ b/pytools/tag.py @@ -273,7 +273,7 @@ class Taggable: and other tags of this type are already present, an error is raised Assumes `self.copy(tags=)` is implemented. - :arg tags: An instance of :class:`Tag` or + :arg tags: An instance of :class:`~pytools.tag.Tag` or an iterable with instances therein. """ return self.copy( @@ -285,8 +285,8 @@ class Taggable: Return a copy of *self* without the specified tags. `self.copy(tags=)` is implemented. - :arg tags: An instance of :class:`Tag` or an iterable with instances - therein. + :arg tags: An instance of :class:`~pytools.tag.Tag` or an iterable with + instances therein. :arg verify_existence: If set to `True`, this method raises an exception if not all tags specified for removal are present in the original set of tags. Default `True`.