Skip to content

Commit 1cdec7a

Browse files
committed
Fix wrong class name in git.objects.tag docstring
In 6126997 (gitpython-developers#1850), I had meant to have the git.objects.tag module docstring say that the module defined the TagObject class, to help ensure no one would confuse this with the TagReference class. But I instead had it wrongly say it defined the TagReference class! This fixes that.
1 parent 8e8b87a commit 1cdec7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git/objects/tag.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
"""Provides an :class:`~git.objects.base.Object`-based type for annotated tags.
77
8-
This defines the :class:`TagReference` class, which represents annotated tags.
8+
This defines the :class:`TagObject` class, which represents annotated tags.
99
For lightweight tags, see the :mod:`git.refs.tag` module.
1010
"""
1111

0 commit comments

Comments
 (0)