summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Rivero <rafael@cloudscaling.com>2014-09-18 16:39:28 -0700
committerJoshua Harlow <harlowja@yahoo-inc.com>2014-09-20 15:59:43 +0000
commitde652c770aa281214aad7003fc6d4d1a85802e4c (patch)
tree46a0f4ff158c5e8b2d678c7b82c2c55b46260715
parentce628870acd0b278f399ef80745c9c0966cc1630 (diff)
downloadtaskflow-de652c770aa281214aad7003fc6d4d1a85802e4c.tar.gz
Typos "searchs"
Misspelling of "searchs" in method index. Change-Id: Ifb17fc1a4b4df2ea7cbc3a49e9815888dd1d7467
-rw-r--r--taskflow/types/tree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/taskflow/types/tree.py b/taskflow/types/tree.py
index b652742..759e0fd 100644
--- a/taskflow/types/tree.py
+++ b/taskflow/types/tree.py
@@ -168,7 +168,7 @@ class Node(object):
yield c
def index(self, item):
- """Finds the child index of a given item, searchs in added order."""
+ """Finds the child index of a given item, searches in added order."""
index_at = None
for (i, child) in enumerate(self._children):
if child.item == item: