[Zope3-checkins] SVN: Zope3/trunk/src/zope/event/README.txt fixed a few typos

Eckart Hertzler eckart at hertzler.de
Thu Jun 3 04:09:09 EDT 2004


Log message for revision 25221:
fixed a few typos



-=-
Modified: Zope3/trunk/src/zope/event/README.txt
===================================================================
--- Zope3/trunk/src/zope/event/README.txt	2004-06-03 06:47:40 UTC (rev 25220)
+++ Zope3/trunk/src/zope/event/README.txt	2004-06-03 08:09:09 UTC (rev 25221)
@@ -12,7 +12,7 @@
 points. 
 
 The package has a list of subscribers.  Application code can manage
-subscriptiosn by manipulating this list.  For the examples here, we'll
+subscriptions by manipulating this list.  For the examples here, we'll
 save the current contents away and empty the list. We'll restore the
 contents when we're done with out examples.
 
@@ -29,7 +29,7 @@
   >>> event = MyEvent()
   >>> zope.event.notify(event)
 
-The notify function is caled with a single object, which we call an
+The notify function is called with a single object, which we call an
 event.  Any object will do:
 
   >>> zope.event.notify(None)
@@ -63,11 +63,11 @@
   >>> zope.event.notify(42)
   also got: 42
 
-Generally, application framworks will provide more sophisticated
+Generally, application frameworks will provide more sophisticated
 subscription mechanisms that build on this simple mechanism. The
 frameworks will install subscribers that then dispatch to other
 subscribers based on event types or data.
 
-We're done, so we'll restoe the subscribers:
+We're done, so we'll restore the subscribers:
 
   >>> zope.event.subscribers[:] = old_subscribers




More information about the Zope3-Checkins mailing list