Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Keppler2018-08-31 19:39:08 +0000
committerMatthias Sohn2018-09-01 22:03:22 +0000
commit8c606b4926726eeedcd92110f7be290b24eb5c0d (patch)
treeb104a6fa4865ce46437c4bef2963afb0e187076e
parent3e207a04ea4525f8348a79dc538dcb675a80fe82 (diff)
downloadegit-8c606b4926726eeedcd92110f7be290b24eb5c0d.tar.gz
egit-8c606b4926726eeedcd92110f7be290b24eb5c0d.tar.xz
egit-8c606b4926726eeedcd92110f7be290b24eb5c0d.zip
Minor: Fix Javadoc typos
Change-Id: I0422dfdbfd096842c9ae119a52b66b16347700e8 Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de>
-rw-r--r--org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/synchronize/model/GitModelObject.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/synchronize/model/GitModelObject.java b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/synchronize/model/GitModelObject.java
index d5fcd07007..bcfa68efcf 100644
--- a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/synchronize/model/GitModelObject.java
+++ b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/synchronize/model/GitModelObject.java
@@ -18,7 +18,7 @@ import org.eclipse.egit.core.synchronize.dto.GitSynchronizeData;
import org.eclipse.jgit.errors.MissingObjectException;
/**
- * Abstract representation of all object that are included in Git ChangeSet
+ * Abstract representation of all objects that are included in Git ChangeSet
* model.
*/
public abstract class GitModelObject extends PlatformObject {
@@ -59,7 +59,7 @@ public abstract class GitModelObject extends PlatformObject {
public abstract int repositoryHashCode();
/**
- * @return child's of particular model object
+ * @return children of particular model object
*/
public abstract GitModelObject[] getChildren();

Back to the top