Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Fulton committed Jul 1, 2016
1 parent a874d18 commit d74589e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ZODB/interfaces.py
Expand Up @@ -817,14 +817,14 @@ class IMultiCommitStorage(IStorage):
def store(oid, serial, data, version, transaction):
"""Store data for the object id, oid.
See IStorage.store. For object's implementing this interface,
See IStorage.store. For objects implementing this interface,
the return value is always None.
"""

def tpc_finish(transaction, func = lambda tid: None):
"""Finish the transaction, making any transaction changes permanent.
See IStorage.store. For object's implementing this interface,
See IStorage.store. For objects implementing this interface,
the return value must be the committed tid. It is used to set the
serial for objects whose ids were passed to previous store calls
in the same transaction.
Expand All @@ -833,7 +833,7 @@ def tpc_finish(transaction, func = lambda tid: None):
def tpc_vote(transaction):
"""Provide a storage with an opportunity to veto a transaction
See IStorage.store. For object's implementing this interface,
See IStorage.store. For objects implementing this interface,
the return value can be either None or a sequence of oids for which
a conflict was resolved.
"""
Expand Down

0 comments on commit d74589e

Please sign in to comment.