[Checkins] SVN: zc.z3monitor/trunk/src/zc/z3monitor/ The spell-checking vigilante strikes again!

Marius Gedminas marius at pov.lt
Thu Dec 6 11:02:42 EST 2007


Log message for revision 82163:
  The spell-checking vigilante strikes again!
  
  

Changed:
  U   zc.z3monitor/trunk/src/zc/z3monitor/README.txt
  U   zc.z3monitor/trunk/src/zc/z3monitor/__init__.py

-=-
Modified: zc.z3monitor/trunk/src/zc/z3monitor/README.txt
===================================================================
--- zc.z3monitor/trunk/src/zc/z3monitor/README.txt	2007-12-06 15:49:00 UTC (rev 82162)
+++ zc.z3monitor/trunk/src/zc/z3monitor/README.txt	2007-12-06 16:02:41 UTC (rev 82163)
@@ -4,7 +4,7 @@
 The Zope 3 monitor server is a server that runs in a Zope 3 process
 and that provides a command-line interface to request various bits of
 information.  The server is zc.ngi based, so we can use the zc.ngi
-testing infreastructure to demonstrate it.
+testing infrastructure to demonstrate it.
 
     >>> import zc.ngi.testing
     >>> import zc.z3monitor
@@ -42,7 +42,7 @@
     Hi Jim, nice to meet ya!
     -> CLOSE
 
-The server comes with a number of userful commands.  Let's register
+The server comes with a number of useful commands.  Let's register
 them so we can see what they do:
 
     >>> zope.component.provideUtility(zc.z3monitor.help,
@@ -91,7 +91,7 @@
     -> CLOSE
 
 
-The commands that come with the monitor use databnase information.  
+The commands that come with the monitor use database information.  
 They access databases as utilities.  Let's create some test databases
 and register them as utilities.
 
@@ -124,7 +124,7 @@
     <BLANKLINE>
         - The number of open database connections to the main database, which
           is the database registered without a name.
-        - The virual memory size, and
+        - The virtual memory size, and
         - The resident memory size.
     <BLANKLINE>
         If there are old database connections, they will be listed.  By
@@ -140,7 +140,7 @@
     VmRSS:	   28764 kB 
     -> CLOSE
 
-Let's create a couple of connections and then call z2monitor again
+Let's create a couple of connections and then call z3monitor again
 with a value of 0:
 
     >>> conn1 = main.open()
@@ -196,7 +196,7 @@
     <BLANKLINE>
         You can pass a database name, where "-" is an alias for the main database.
     <BLANKLINE>
-        By default, the statitics are for a sampling interval of 5
+        By default, the statistics are for a sampling interval of 5
         minutes.  You can request another sampling interval, up to an
         hour, by passing a sampling interval in seconds after the database name.    
     <BLANKLINE>
@@ -240,7 +240,7 @@
     1   2   3   1   1 
     -> CLOSE
 
-.. Edge case to make sure that deltat is used:
+.. Edge case to make sure that ``deltat`` is used:
 
     >>> connection.test_input('dbinfo - 0\n')
     0   0   0   1   1 
@@ -264,7 +264,7 @@
     <BLANKLINE>
         - the number of records evicted from the cache,
     <BLANKLINE>
-        - the number of bytes evictes from the cache,
+        - the number of bytes evicted from the cache,
     <BLANKLINE>
         - the number of cache accesses.
     <BLANKLINE>

Modified: zc.z3monitor/trunk/src/zc/z3monitor/__init__.py
===================================================================
--- zc.z3monitor/trunk/src/zc/z3monitor/__init__.py	2007-12-06 15:49:00 UTC (rev 82162)
+++ zc.z3monitor/trunk/src/zc/z3monitor/__init__.py	2007-12-06 16:02:41 UTC (rev 82163)
@@ -91,7 +91,7 @@
 
     - The number of open database connections to the main database, which
       is the database registered without a name.
-    - The virual memory size, and
+    - The virtual memory size, and
     - The resident memory size.
 
     If there are old database connections, they will be listed.  By
@@ -148,7 +148,7 @@
 
     You can pass a database name, where "-" is an alias for the main database.
 
-    By default, the statitics are for a sampling interval of 5
+    By default, the statistics are for a sampling interval of 5
     minutes.  You can request another sampling interval, up to an
     hour, by passing a sampling interval in seconds after the database name.    
     """
@@ -186,7 +186,7 @@
 
     - the number of records evicted from the cache,
 
-    - the number of bytes evictes from the cache,
+    - the number of bytes evicted from the cache,
 
     - the number of cache accesses.
 



More information about the Checkins mailing list