[Zope3-checkins] SVN: Zope3/trunk/src/zope/testbrowser/README.txt Typo fixes and some factual corrections.

Marius Gedminas marius at pov.lt
Fri Feb 24 12:18:40 EST 2006


Log message for revision 41778:
  Typo fixes and some factual corrections.
  
  

Changed:
  U   Zope3/trunk/src/zope/testbrowser/README.txt

-=-
Modified: Zope3/trunk/src/zope/testbrowser/README.txt
===================================================================
--- Zope3/trunk/src/zope/testbrowser/README.txt	2006-02-24 17:06:57 UTC (rev 41777)
+++ Zope3/trunk/src/zope/testbrowser/README.txt	2006-02-24 17:18:40 UTC (rev 41778)
@@ -18,7 +18,7 @@
     >>> from zope.testbrowser.testing import Browser
     >>> browser = Browser()
 
-An ititial page to load can be passed to the ``Browser`` constructor:
+An initial page to load can be passed to the ``Browser`` constructor:
 
     >>> browser = Browser('http://localhost/@@/testbrowser/simple.html')
     >>> browser.url
@@ -134,7 +134,7 @@
     >>> browser.headers
     <httplib.HTTPMessage instance...>
 
-The headers can be accesed as a string:
+The headers can be accessed as a string:
 
     >>> print browser.headers
     Status: 200 Ok
@@ -500,7 +500,7 @@
     >>> ctrl.value
     ['1', '2']
 
-  - subcontrols gives you a list of the subcontrol objects in the control
+  - 'controls' gives you a list of the subcontrol objects in the control
     (subcontrols are discussed below).
 
     >>> ctrl.controls
@@ -508,7 +508,7 @@
      <ItemControl name='multi-select-value' type='select' optionValue='2'>,
      <ItemControl name='multi-select-value' type='select' optionValue='3'>]
 
-  - The get method lets you get subcontrols by their label or their value.
+  - The 'getControl' method lets you get subcontrols by their label or their value.
 
     >>> ctrl.getControl('Un')
     <ItemControl name='multi-select-value' type='select' optionValue='1'>
@@ -854,7 +854,7 @@
     >>> ctrl.displayValue
     ['Ein']
 
-  The radio control subcontrols were illustrated above.
+    The radio control subcontrols were illustrated above.
 
   - Image Control
 



More information about the Zope3-Checkins mailing list