From b33a53e4879cebbb25dfb85b6137e35329d05a56 Mon Sep 17 00:00:00 2001 From: Raphael Ackermann Date: Sun, 9 Aug 2009 22:43:43 +0000 Subject: [PATCH] fixed typos svn: r12937 --- src/gen/db/base.py | 4 ++-- src/gen/proxy/dbbase.py | 4 ++-- src/gen/proxy/filter.py | 4 ++-- src/gen/proxy/living.py | 4 ++-- src/gen/proxy/proxybase.py | 4 ++-- src/gen/proxy/referenced.py | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/gen/db/base.py b/src/gen/db/base.py index cd5108686..5320e508e 100644 --- a/src/gen/db/base.py +++ b/src/gen/db/base.py @@ -2522,7 +2522,7 @@ class GrampsDbBase(Callback): """ Find all objects that hold a reference to the object handle. - Returns an interator over alist of (class_name, handle) tuples. + Returns an iterator over a list of (class_name, handle) tuples. @param handle: handle of the object to search for. @type handle: database handle @@ -2530,7 +2530,7 @@ class GrampsDbBase(Callback): Default: None means include all classes. @type include_classes: list of class names - This default implementation does a sequencial scan through all + This default implementation does a sequential scan through all the primary object databases and is very slow. Backends can override this method to provide much faster implementations that make use of additional capabilities of the backend. diff --git a/src/gen/proxy/dbbase.py b/src/gen/proxy/dbbase.py index 67e92f3d4..5458f277c 100644 --- a/src/gen/proxy/dbbase.py +++ b/src/gen/proxy/dbbase.py @@ -1307,7 +1307,7 @@ class DbBase(object): def find_backlink_handles(self, handle, include_classes=None): """ Find all objects that hold a reference to the object handle. - Returns an interator over alist of (class_name, handle) tuples. + Returns an iterator over a list of (class_name, handle) tuples. @param handle: handle of the object to search for. @type handle: database handle @@ -1315,7 +1315,7 @@ class DbBase(object): Default: None means include all classes. @type include_classes: list of class names - This default implementation does a sequencial scan through all + This default implementation does a sequential scan through all the primary object databases and is very slow. Backends can override this method to provide much faster implementations that make use of additional capabilities of the backend. diff --git a/src/gen/proxy/filter.py b/src/gen/proxy/filter.py index 9062a1af4..0fa206911 100644 --- a/src/gen/proxy/filter.py +++ b/src/gen/proxy/filter.py @@ -398,7 +398,7 @@ class FilterProxyDb(ProxyDbBase): def find_backlink_handles(self, handle, include_classes=None): """ Find all objects that hold a reference to the object handle. - Returns an interator over alist of (class_name, handle) tuples. + Returns an iterator over a list of (class_name, handle) tuples. @param handle: handle of the object to search for. @type handle: database handle @@ -406,7 +406,7 @@ class FilterProxyDb(ProxyDbBase): Default: None means include all classes. @type include_classes: list of class names - This default implementation does a sequencial scan through all + This default implementation does a sequential scan through all the primary object databases and is very slow. Backends can override this method to provide much faster implementations that make use of additional capabilities of the backend. diff --git a/src/gen/proxy/living.py b/src/gen/proxy/living.py index 23509371c..31d936562 100644 --- a/src/gen/proxy/living.py +++ b/src/gen/proxy/living.py @@ -286,7 +286,7 @@ class LivingProxyDb(ProxyDbBase): def find_backlink_handles(self, handle, include_classes=None): """ Find all objects that hold a reference to the object handle. - Returns an interator over alist of (class_name, handle) tuples. + Returns an iterator over a list of (class_name, handle) tuples. @param handle: handle of the object to search for. @type handle: database handle @@ -294,7 +294,7 @@ class LivingProxyDb(ProxyDbBase): Default: None means include all classes. @type include_classes: list of class names - This default implementation does a sequencial scan through all + This default implementation does a sequential scan through all the primary object databases and is very slow. Backends can override this method to provide much faster implementations that make use of additional capabilities of the backend. diff --git a/src/gen/proxy/proxybase.py b/src/gen/proxy/proxybase.py index 46321d8c3..7d10a5cc0 100644 --- a/src/gen/proxy/proxybase.py +++ b/src/gen/proxy/proxybase.py @@ -595,7 +595,7 @@ class ProxyDbBase(DbBase): def find_backlink_handles(self, handle, include_classes=None): """ Find all objects that hold a reference to the object handle. - Returns an interator over alist of (class_name, handle) tuples. + Returns an iterator over a list of (class_name, handle) tuples. @param handle: handle of the object to search for. @type handle: database handle @@ -603,7 +603,7 @@ class ProxyDbBase(DbBase): Default: None means include all classes. @type include_classes: list of class names - This default implementation does a sequencial scan through all + This default implementation does a sequential scan through all the primary object databases and is very slow. Backends can override this method to provide much faster implementations that make use of additional capabilities of the backend. diff --git a/src/gen/proxy/referenced.py b/src/gen/proxy/referenced.py index d7c968c11..b1a1d0bd7 100644 --- a/src/gen/proxy/referenced.py +++ b/src/gen/proxy/referenced.py @@ -260,7 +260,7 @@ class ReferencedProxyDb(ProxyDbBase): def find_backlink_handles(self, handle, include_classes=None): """ Find all objects that hold a reference to the object handle. - Returns an interator over alist of (class_name, handle) tuples. + Returns an iterator over a list of (class_name, handle) tuples. @param handle: handle of the object to search for. @type handle: database handle @@ -268,7 +268,7 @@ class ReferencedProxyDb(ProxyDbBase): Default: None means include all classes. @type include_classes: list of class names - This default implementation does a sequencial scan through all + This default implementation does a sequential scan through all the primary object databases and is very slow. Backends can override this method to provide much faster implementations that make use of additional capabilities of the backend.