Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 347E7200C63 for ; Thu, 11 May 2017 12:53:05 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 3319B160BCA; Thu, 11 May 2017 10:53:05 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 81EC7160BB2 for ; Thu, 11 May 2017 12:53:04 +0200 (CEST) Received: (qmail 38285 invoked by uid 500); 11 May 2017 10:53:03 -0000 Mailing-List: contact commits-help@tinkerpop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tinkerpop.apache.org Delivered-To: mailing list commits@tinkerpop.apache.org Received: (qmail 38270 invoked by uid 99); 11 May 2017 10:53:03 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 May 2017 10:53:03 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 9F8F1DFFB3; Thu, 11 May 2017 10:53:03 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: spmallette@apache.org To: commits@tinkerpop.apache.org Date: Thu, 11 May 2017 10:53:03 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/2] tinkerpop git commit: Minor javadoc fixup archived-at: Thu, 11 May 2017 10:53:05 -0000 Repository: tinkerpop Updated Branches: refs/heads/tp32 38289c836 -> 02b0e12fe 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/tp32 Commit: 4c0c5a9e58863188b2f1bc359f348d572d42cf4f Parents: 9d8820c Author: Stephen Mallette Authored: Thu May 11 06:52:07 2017 -0400 Committer: Stephen Mallette 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() {