diff --git a/src/gen/lib/baseobj.py b/src/gen/lib/baseobj.py index 573744643..a3c093a62 100644 --- a/src/gen/lib/baseobj.py +++ b/src/gen/lib/baseobj.py @@ -152,7 +152,7 @@ class BaseObject(object): Return the list of child objects which may, directly or through their children, reference primary objects. - :returns: Returns the list of objects refereincing primary objects. + :returns: Returns the list of objects referencing primary objects. :rtype: list """ return [] diff --git a/src/gen/lib/childref.py b/src/gen/lib/childref.py index ee649a5e8..4b563a7a9 100644 --- a/src/gen/lib/childref.py +++ b/src/gen/lib/childref.py @@ -133,7 +133,7 @@ class ChildRef(SecondaryObject, PrivacyBase, SourceBase, NoteBase, RefBase): Return the list of child objects which may, directly or through their children, reference primary objects.. - :returns: Returns the list of objects refereincing primary objects. + :returns: Returns the list of objects referencing primary objects. :rtype: list """ return self.source_list diff --git a/src/gen/lib/event.py b/src/gen/lib/event.py index 97dba300d..d958bac1f 100644 --- a/src/gen/lib/event.py +++ b/src/gen/lib/event.py @@ -231,7 +231,7 @@ class Event(SourceBase, NoteBase, MediaBase, AttributeBase, Return the list of child objects which may, directly or through their children, reference primary objects. - :returns: Returns the list of objects refereincing primary objects. + :returns: Returns the list of objects referencing primary objects. :rtype: list """ return self.get_sourcref_child_list() + self.source_list diff --git a/src/gen/lib/eventref.py b/src/gen/lib/eventref.py index 9597e056f..b45b69df3 100644 --- a/src/gen/lib/eventref.py +++ b/src/gen/lib/eventref.py @@ -46,7 +46,7 @@ class EventRef(SecondaryObject, PrivacyBase, NoteBase, AttributeBase, RefBase): Event reference class. This class is for keeping information about how the person relates - to the refereneced event. + to the referenced event. """ def __init__(self, source=None): @@ -144,7 +144,7 @@ class EventRef(SecondaryObject, PrivacyBase, NoteBase, AttributeBase, RefBase): Return the list of child objects which may, directly or through their children, reference primary objects.. - :returns: Returns the list of objects refereincing primary objects. + :returns: Returns the list of objects referencing primary objects. :rtype: list """ return self.get_sourcref_child_list() diff --git a/src/gen/lib/family.py b/src/gen/lib/family.py index 401222153..9b699d88f 100644 --- a/src/gen/lib/family.py +++ b/src/gen/lib/family.py @@ -291,7 +291,7 @@ class Family(SourceBase, NoteBase, MediaBase, AttributeBase, LdsOrdBase, Return the list of child objects which may, directly or through their children, reference primary objects.. - :returns: Returns the list of objects refereincing primary objects. + :returns: Returns the list of objects referencing primary objects. :rtype: list """ return self.get_sourcref_child_list() + self.source_list diff --git a/src/gen/lib/ldsord.py b/src/gen/lib/ldsord.py index e330babaf..71c4bc8d3 100644 --- a/src/gen/lib/ldsord.py +++ b/src/gen/lib/ldsord.py @@ -199,7 +199,7 @@ class LdsOrd(SecondaryObject, SourceBase, NoteBase, Return the list of child objects which may, directly or through their children, reference primary objects. - :returns: Returns the list of objects refereincing primary objects. + :returns: Returns the list of objects referencing primary objects. :rtype: list """ return self.source_list diff --git a/src/gen/lib/mediaobj.py b/src/gen/lib/mediaobj.py index baad6272c..840dd4d19 100644 --- a/src/gen/lib/mediaobj.py +++ b/src/gen/lib/mediaobj.py @@ -181,7 +181,7 @@ class MediaObject(SourceBase, NoteBase, DateBase, AttributeBase, Return the list of child objects which may, directly or through their children, reference primary objects. - :returns: Returns the list of objects refereincing primary objects. + :returns: Returns the list of objects referencing primary objects. :rtype: list """ return self.attribute_list + self.source_list diff --git a/src/gen/lib/mediaref.py b/src/gen/lib/mediaref.py index 185b193cf..e66613fcd 100644 --- a/src/gen/lib/mediaref.py +++ b/src/gen/lib/mediaref.py @@ -126,7 +126,7 @@ class MediaRef(SecondaryObject, PrivacyBase, SourceBase, NoteBase, RefBase, Return the list of child objects which may, directly or through their children, reference primary objects. - :returns: Returns the list of objects refereincing primary objects. + :returns: Returns the list of objects referencing primary objects. :rtype: list """ return self.attribute_list + self.source_list diff --git a/src/gen/lib/name.py b/src/gen/lib/name.py index 1b3c607b0..9fe521071 100644 --- a/src/gen/lib/name.py +++ b/src/gen/lib/name.py @@ -164,7 +164,7 @@ class Name(SecondaryObject, PrivacyBase, SourceBase, NoteBase, DateBase): Return the list of child objects which may, directly or through their children, reference primary objects. - :returns: Returns the list of objects refereincing primary objects. + :returns: Returns the list of objects referencing primary objects. :rtype: list """ return self.source_list diff --git a/src/gen/lib/person.py b/src/gen/lib/person.py index 06afb7964..4e9e94792 100644 --- a/src/gen/lib/person.py +++ b/src/gen/lib/person.py @@ -359,7 +359,7 @@ class Person(SourceBase, NoteBase, AttributeBase, MediaBase, Return the list of child objects which may, directly or through their children, reference primary objects. - :returns: Returns the list of objects refereincing primary objects. + :returns: Returns the list of objects referencing primary objects. :rtype: list """ #don't count double, notes can be found in sourcref diff --git a/src/gen/lib/personref.py b/src/gen/lib/personref.py index dcd57571c..042dbc175 100644 --- a/src/gen/lib/personref.py +++ b/src/gen/lib/personref.py @@ -126,7 +126,7 @@ class PersonRef(SecondaryObject, PrivacyBase, SourceBase, NoteBase, RefBase): Return the list of child objects which may, directly or through their children, reference primary objects.. - :returns: Returns the list of objects refereincing primary objects. + :returns: Returns the list of objects referencing primary objects. :rtype: list """ return self.source_list diff --git a/src/gen/lib/place.py b/src/gen/lib/place.py index 36bed9431..f20ab9c7a 100644 --- a/src/gen/lib/place.py +++ b/src/gen/lib/place.py @@ -179,7 +179,7 @@ class Place(SourceBase, NoteBase, MediaBase, UrlBase, PrimaryObject): Return the list of child objects which may, directly or through their children, reference primary objects. - :returns: Returns the list of objects refereincing primary objects. + :returns: Returns the list of objects referencing primary objects. :rtype: list """ return self.media_list + self.source_list diff --git a/src/gen/lib/repo.py b/src/gen/lib/repo.py index 11d27ee68..3028dd205 100644 --- a/src/gen/lib/repo.py +++ b/src/gen/lib/repo.py @@ -125,7 +125,7 @@ class Repository(NoteBase, AddressBase, UrlBase, PrimaryObject): Return the list of child objects which may, directly or through their children, reference primary objects. - :returns: Returns the list of objects refereincing primary objects. + :returns: Returns the list of objects referencing primary objects. :rtype: list """ return self.address_list diff --git a/src/gen/lib/src.py b/src/gen/lib/src.py index a746f23e2..908a8df9d 100644 --- a/src/gen/lib/src.py +++ b/src/gen/lib/src.py @@ -177,7 +177,7 @@ class Source(MediaBase, NoteBase, PrimaryObject): Return the list of child objects which may, directly or through their children, reference primary objects. - :returns: Returns the list of objects refereincing primary objects. + :returns: Returns the list of objects referencing primary objects. :rtype: list """ return self.media_list + self.reporef_list