You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2017/05/11 10:53:09 UTC

tinkerpop git commit: Minor javadoc fixup

Repository: tinkerpop
Updated Branches:
  refs/heads/tp31 9d8820ce4 -> 4c0c5a9e5


Minor javadoc fixup


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/4c0c5a9e
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/4c0c5a9e
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/4c0c5a9e

Branch: refs/heads/tp31
Commit: 4c0c5a9e58863188b2f1bc359f348d572d42cf4f
Parents: 9d8820c
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Thu May 11 06:52:07 2017 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Thu May 11 06:52:07 2017 -0400

----------------------------------------------------------------------
 .../main/java/org/apache/tinkerpop/gremlin/structure/Graph.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/4c0c5a9e/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/Graph.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/Graph.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/Graph.java
index 83e68e1..6fcf8c2 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/Graph.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/Graph.java
@@ -618,11 +618,11 @@ public interface Graph extends AutoCloseable, Host {
             }
 
             /**
-             * Determines if an {@link Element} can have a user defined identifier.  Implementation that do not support
+             * Determines if an {@link Element} can have a user defined identifier.  Implementations that do not support
              * this feature will be expected to auto-generate unique identifiers.  In other words, if the {@link Graph}
              * allows {@code graph.addVertex(id,x)} to work and thus set the identifier of the newly added
              * {@link Vertex} to the value of {@code x} then this feature should return true.  In this case, {@code x}
-             * is assumed to be an identifier datat ype that the {@link Graph} will accept.
+             * is assumed to be an identifier data type that the {@link Graph} will accept.
              */
             @FeatureDescriptor(name = FEATURE_USER_SUPPLIED_IDS)
             public default boolean supportsUserSuppliedIds() {