diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-11-21 17:48:03 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-11-21 17:48:03 +0100 |
commit | 0b813371f5a8af95152cae109d28c7c97bfaf79f (patch) | |
tree | 766bcee6c13c0b443d4afc69e1c7e68a1ab7910a /lib/git/objects/util.py | |
parent | 9d6310db456de9952453361c860c3ae61b8674ea (diff) | |
download | gitpython-0b813371f5a8af95152cae109d28c7c97bfaf79f.tar.gz |
Fixed API reference docs as far as possible
Diffstat (limited to 'lib/git/objects/util.py')
-rw-r--r-- | lib/git/objects/util.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/git/objects/util.py b/lib/git/objects/util.py index 81544e26..a9e1143c 100644 --- a/lib/git/objects/util.py +++ b/lib/git/objects/util.py @@ -276,7 +276,8 @@ class Traversable(object): raise NotImplementedError("To be implemented in subclass") def list_traverse(self, *args, **kwargs): - """:return: IterableList with the results of the traversal as produced by + """ + :return: IterableList with the results of the traversal as produced by traverse()""" out = IterableList(self._id_attribute_) out.extend(self.traverse(*args, **kwargs)) |