Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2009-09-22 10:36:15 +0000
committerTomasz Zarna2009-09-22 10:36:15 +0000
commit2b2ffa8ba191c1e8657af995f30f5ccd923637c1 (patch)
tree9332b026df1f59f4847b9473fa8cce69200224d8 /bundles/org.eclipse.team.core/src/org/eclipse/team/core/subscribers
parent08afece23398eb8ebd30e2a93f99f6da733c7755 (diff)
downloadeclipse.platform.team-2b2ffa8ba191c1e8657af995f30f5ccd923637c1.tar.gz
eclipse.platform.team-2b2ffa8ba191c1e8657af995f30f5ccd923637c1.tar.xz
eclipse.platform.team-2b2ffa8ba191c1e8657af995f30f5ccd923637c1.zip
Fixed doc typos and missing params.
Diffstat (limited to 'bundles/org.eclipse.team.core/src/org/eclipse/team/core/subscribers')
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/core/subscribers/Subscriber.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/subscribers/Subscriber.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/subscribers/Subscriber.java
index 905d2b951..514af44b2 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/subscribers/Subscriber.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/subscribers/Subscriber.java
@@ -50,12 +50,12 @@ import org.eclipse.team.internal.core.mapping.SyncInfoToDiffConverter;
* resource)
* to determine if the file represents an outgoing change so that <code>SyncInfo</code> obtained
* after a delta will indicate that the file has an outgoing change. The subscriber must also notify listeners
- * when roots and added
+ * when roots are added
* or removed. For example, a subscriber for a repository provider would fire a root added event when a project
* was shared
* with a repository. No event is required when a root is deleted as this is available through the
* <code>IResource</code> delta mechanism. It is up to clients to re-query the subscriber
- * when the state of a resource changes locally by listening to IResource deltas.
+ * when the state of a resource changes locally by listening to <code>IResource</code> deltas.
* </p><p>
* The remote and base states can also include the state for resources that do not exist locally (i.e outgoing deletions
* or incoming additions). When queried for the members of a local resource, the subscriber should include any children

Back to the top