[Zodb-checkins] CVS: Zope3/lib/python/ZODB - Connection.py:1.81 FileStorage.py:1.99

Florent Guillaume fg@nuxeo.com
Thu, 3 Oct 2002 15:44:56 -0400


Update of /cvs-repository/Zope3/lib/python/ZODB
In directory cvs.zope.org:/tmp/cvs-serv23573/lib/python/ZODB

Modified Files:
	Connection.py FileStorage.py 
Log Message:
Fixed pervasive it's/its grammatical error in comments or docstrings.


=== Zope3/lib/python/ZODB/Connection.py 1.80 => 1.81 ===
--- Zope3/lib/python/ZODB/Connection.py:1.80	Wed Oct  2 14:49:29 2002
+++ Zope3/lib/python/ZODB/Connection.py	Thu Oct  3 15:44:24 2002
@@ -73,7 +73,7 @@
     """Object managers for individual object space.
 
     An object space is a version of collection of objects.  In a
-    multi-threaded application, each thread get's it's own object
+    multi-threaded application, each thread gets its own object
     space.
 
     The Connection manages movement of objects in and out of object storage.
@@ -474,7 +474,7 @@
 
     def commit(self, txn):
         # It's important that the storage call the function we pass
-        # (self._invalidate_modified) while it still has it's
+        # (self._invalidate_modified) while it still has its
         # lock.  We don't want another thread to be able to read any
         # updated data until we've had a chance to send an
         # invalidation message to all of the other connections!


=== Zope3/lib/python/ZODB/FileStorage.py 1.98 => 1.99 ===
--- Zope3/lib/python/ZODB/FileStorage.py:1.98	Thu Sep 19 14:22:04 2002
+++ Zope3/lib/python/ZODB/FileStorage.py	Thu Oct  3 15:44:24 2002
@@ -509,7 +509,7 @@
                     tloc = h[24:32]
                     if t != tloc:
                         # We haven't checked this transaction before,
-                        # get it's status.
+                        # get its status.
                         t = tloc
                         self._file.seek(u64(t) + 16)
                         tstatus = self._file.read(1)
@@ -1165,7 +1165,7 @@
                 tloc=h[16:24]
                 if t != tloc:
                     # We haven't checked this transaction before,
-                    # get it's status.
+                    # get its status.
                     t=tloc
                     seek(u64(t)+16)
                     tstatus=read(1)