From 856319ede0cab4998fdbb43ab61250f377fdba4c Mon Sep 17 00:00:00 2001 From: Matt Jensen Date: Sun, 14 Sep 2008 23:01:16 +0000 Subject: [PATCH] Fixed a couple tiny javadoc typ-o's. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5372 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/presents/dobj/DObject.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/com/threerings/presents/dobj/DObject.java b/src/java/com/threerings/presents/dobj/DObject.java index cf558528f..18dcf0497 100644 --- a/src/java/com/threerings/presents/dobj/DObject.java +++ b/src/java/com/threerings/presents/dobj/DObject.java @@ -44,7 +44,7 @@ import static com.threerings.presents.Log.log; * listeners. These listeners have access to the object or a proxy of the object and therefore have * access to the data stored in the object's members at all times. * - *

Additionally, an object as a set of subscribers. Subscribers manage the lifespan of the + *

Additionally, an object has a set of subscribers. Subscribers manage the lifespan of the * object; while a subscriber is subscribed, the listeners registered with an object will be * notified of events. When the subscriber unsubscribes, the object becomes non-live and the * listeners are no longer notified. Note: on the server, object subscription is merely a @@ -54,7 +54,7 @@ import static com.threerings.presents.Log.log; * *

When there is any change to the the object's fields data, an event is generated which is * dispatched to all listeners of the object, notifying them of that change and effecting that - * change to the copy of the object maintained at each client. In this way, both a respository of + * change to the copy of the object maintained at each client. In this way, both a repository of * shared information and a mechanism for asynchronous notification are made available as a * fundamental application building blocks. *