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 2020/04/15 14:01:32 UTC

[tinkerpop] 01/03: Fix javadoc CTR

This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 7e62b47cbb9d83a59e22a7050b89b4fbcec7529d
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Wed Apr 15 10:00:53 2020 -0400

    Fix javadoc CTR
---
 .../process/traversal/strategy/decoration/PartitionStrategy.java        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/PartitionStrategy.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/PartitionStrategy.java
index 20581a7..f5b2825 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/PartitionStrategy.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/PartitionStrategy.java
@@ -72,7 +72,7 @@ import java.util.stream.Collectors;
 /**
  * {@code PartitionStrategy} partitions the vertices, edges and vertex properties of a graph into String named
  * partitions (i.e. buckets, subgraphs, etc.).  It blinds a {@link Traversal} from "seeing" specified areas of
- * the graph given the partition names assigned to {@link Builder#addReadPartition(String)}.  The traversal will
+ * the graph given the partition names assigned to {@link Builder#readPartitions(String...)}.  The traversal will
  * ignore all graph elements not in those "read" partitions.
  *
  * @author Stephen Mallette (http://stephen.genoprime.com)