Author: aadamchik
Date: Thu Feb 21 11:51:23 2013
New Revision: 1448612
URL: http://svn.apache.org/r1448612
Log:
typo
(cherry picked from commit b982854caf2493b962d3a9798ba65b13a6e3217e)
Modified:
cayenne/main/branches/STABLE-3.1/docs/docbook/cayenne-guide/src/docbkx/lifecycle-events.xml
Modified:
cayenne/main/branches/STABLE-3.1/docs/docbook/cayenne-guide/src/docbkx/lifecycle-events.xml
URL:
http://svn.apache.org/viewvc/cayenne/main/branches/STABLE-3.1/docs/docbook/cayenne-guide/src/docbkx/lifecycle-events.xml?rev=1448612&r1=1448611&r2=1448612&view=diff
==============================================================================
---
cayenne/main/branches/STABLE-3.1/docs/docbook/cayenne-guide/src/docbkx/lifecycle-events.xml
(original)
+++
cayenne/main/branches/STABLE-3.1/docs/docbook/cayenne-guide/src/docbkx/lifecycle-events.xml
Thu Feb 21 11:51:23 2013
@@ -259,7 +259,7 @@ public class MyEntity2 extends _MyEntity
<title>Combining Listeners with DataChannelFilters</title>
<para>A final touch in the listeners design is preserving the state of
the listener within a
single select or commit, so that events generated by multiple
objects can be collected
- and processed all together. To do that you will need to implements
a
+ and processed all together. To do that you will need to implement a
<code>DataChannelFilter</code>, and add some callback methods
to it. They will store
their state in a ThreadLocal variable of the filter. Here is an
example filter that does
something pretty meaningless - counts how many total objects were
committed. However it