[Checkins] SVN: zc.zodbdgc/trunk/src/zc/zodbdgc/ Fix typos.

Zvezdan Petkovic zvezdan at zope.com
Thu Jul 1 14:34:50 EDT 2010


Log message for revision 114059:
  Fix typos.
  
  

Changed:
  U   zc.zodbdgc/trunk/src/zc/zodbdgc/README.test
  U   zc.zodbdgc/trunk/src/zc/zodbdgc/README.txt
  U   zc.zodbdgc/trunk/src/zc/zodbdgc/__init__.py
  U   zc.zodbdgc/trunk/src/zc/zodbdgc/tests.py

-=-
Modified: zc.zodbdgc/trunk/src/zc/zodbdgc/README.test
===================================================================
--- zc.zodbdgc/trunk/src/zc/zodbdgc/README.test	2010-07-01 16:17:22 UTC (rev 114058)
+++ zc.zodbdgc/trunk/src/zc/zodbdgc/README.test	2010-07-01 18:34:49 UTC (rev 114059)
@@ -160,7 +160,7 @@
 
     >>> now += 1
 
-The number of objecs in the databases now:
+The number of objects in the databases now:
 
     >>> len(conn1._storage), len(conn2._storage), len(conn3._storage)
     (2217, 5, 4)
@@ -304,7 +304,7 @@
       -l LEVEL, --log-level=LEVEL
                             The logging level. The default is WARNING.
       -u UNTRANSFORM, --untransform=UNTRANSFORM
-                            Funciion (module:expr) used to untransform
+                            Function (module:expr) used to untransform
                             data records in files identified using the
                             -file-storage/-f option
 
@@ -498,7 +498,7 @@
     !!! db2 2 ?
     POSKeyError: 0x02
 
-We get a list of missing objects.  We don't get the refering objects.
+We get a list of missing objects.  We don't get the referring objects.
 To get the, we have to use the -r option to specify the name of a
 database to use.
 
@@ -544,7 +544,7 @@
     !!! db2 2 db1 1
     bad db
 
-(Note that we get the refereing object info here because it is redily
+(Note that we get the referring object info here because it is readily
 available at the time the bad reference is detected.)
 
 If a database is configured to not allow cross references, we complain
@@ -653,7 +653,7 @@
 Using file-storage iterators directly
 -------------------------------------
 
-If the database under analysis is a file-storage, we can access teh
+If the database under analysis is a file-storage, we can access the
 files directly:
 
 

Modified: zc.zodbdgc/trunk/src/zc/zodbdgc/README.txt
===================================================================
--- zc.zodbdgc/trunk/src/zc/zodbdgc/README.txt	2010-07-01 16:17:22 UTC (rev 114058)
+++ zc.zodbdgc/trunk/src/zc/zodbdgc/README.txt	2010-07-01 18:34:49 UTC (rev 114059)
@@ -107,7 +107,7 @@
   wildly faster to iterate over a file storage than over a ZEO
   connection.  Using this option uses a file iterator rather than
   opening a file storage in read-only mode, which avoids scanning the
-  database to build an index and aviods the memory cost of a
+  database to build an index and avoids the memory cost of a
   file-storage index.
 
 0.2.0 2009-06-15

Modified: zc.zodbdgc/trunk/src/zc/zodbdgc/__init__.py
===================================================================
--- zc.zodbdgc/trunk/src/zc/zodbdgc/__init__.py	2010-07-01 16:17:22 UTC (rev 114058)
+++ zc.zodbdgc/trunk/src/zc/zodbdgc/__init__.py	2010-07-01 18:34:49 UTC (rev 114059)
@@ -67,7 +67,7 @@
         help='The logging level. The default is WARNING.')
     parser.add_option(
         '-u', '--untransform', dest='untransform',
-        help='Funciion (module:expr) used to untransform data records in'
+        help='Function (module:expr) used to untransform data records in'
         ' files identified using the -file-storage/-f option')
 
     options, args = parser.parse_args(args)

Modified: zc.zodbdgc/trunk/src/zc/zodbdgc/tests.py
===================================================================
--- zc.zodbdgc/trunk/src/zc/zodbdgc/tests.py	2010-07-01 16:17:22 UTC (rev 114058)
+++ zc.zodbdgc/trunk/src/zc/zodbdgc/tests.py	2010-07-01 18:34:49 UTC (rev 114059)
@@ -65,7 +65,7 @@
     ...     conn.root()[i] = conn.root().__class__()
     ...     conn.transaction_manager.commit()
 
-Now, we'll try t make some garbage:
+Now, we'll try to make some garbage:
 
     >>> for i in range(3):
     ...     del conn.root()[i]



More information about the checkins mailing list