fixed typos

svn: r12984
This commit is contained in:
Raphael Ackermann 2009-08-13 08:52:05 +00:00
parent 63094c5aee
commit c1be765f7a
14 changed files with 15 additions and 15 deletions

View File

@ -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 []

View File

@ -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

View File

@ -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

View File

@ -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()

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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