From 21a6cb7336b61f904198f1d48526dcbe9cba6eec Mon Sep 17 00:00:00 2001 From: "Kyle P. Johnson" Date: Fri, 27 Mar 2015 10:04:58 -0400 Subject: [PATCH] Fix typo --- git/objects/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/objects/util.py b/git/objects/util.py index cefef862d..567b1d5b2 100644 --- a/git/objects/util.py +++ b/git/objects/util.py @@ -216,7 +216,7 @@ def __getattr__(self, attr): class Traversable(object): - """Simple interface to perforam depth-first or breadth-first traversals + """Simple interface to perform depth-first or breadth-first traversals into one direction. Subclasses only need to implement one function. Instances of the Subclass must be hashable"""