minor clean-up on doc strings

git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@659 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
helmutm 2005-11-05 14:19:12 +00:00
parent a0b4af8081
commit e5fefb456d

View file

@ -44,7 +44,7 @@ class IRelationsRegistryQuery(Interface):
"""
def query(**kw):
""" Return a list of relations that fulfill the criteria given.
""" Return a sequence of relations that fulfill the criteria given.
Example: rr.queryRelations(first=someObject, second=anotherObject,
relationship=SomeRelationClass)
@ -57,7 +57,7 @@ class IRelationsRegistry(IRelationsRegistryUpdate, IRelationsRegistryQuery):
class IRelation(Interface):
""" Base class for relations.
""" Base interface for relations.
"""
@ -75,4 +75,3 @@ class ITriadicRelation(IDyadicRelation):
third = Attribute('Third object that belongs to the relation.')