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 2015/03/27 15:23:38 UTC

[2/3] incubator-tinkerpop git commit: Correct formatting to get comments to appear in docs for PartitionStrategy.

Correct formatting to get comments to appear in docs for PartitionStrategy.


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

Branch: refs/heads/master
Commit: 9e26f9a5e39321de8bd0cce452fa14aa26dd3a64
Parents: b18b700
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Fri Mar 27 10:22:57 2015 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Fri Mar 27 10:22:57 2015 -0400

----------------------------------------------------------------------
 docs/src/the-traversal.asciidoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/9e26f9a5/docs/src/the-traversal.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/the-traversal.asciidoc b/docs/src/the-traversal.asciidoc
index 4b398c9..29084b2 100644
--- a/docs/src/the-traversal.asciidoc
+++ b/docs/src/the-traversal.asciidoc
@@ -1647,9 +1647,9 @@ graph = TinkerFactory.createModern()
 strategyA = PartitionStrategy.build().partitionKey("_partition").writePartition("a").addReadPartition("a").create()
 strategyB = PartitionStrategy.build().partitionKey("_partition").writePartition("b").addReadPartition("b").create()
 gA = GraphTraversalSource.build().with(strategyA).create(graph)
-gA.addV() // this vertex has a property of {_partition:"a"}
+gA.addV() //// this vertex has a property of {_partition:"a"}
 gB = GraphTraversalSource.build().with(strategyB).create(graph)
-gB.addV() // this vertex has a property of {_partition:"b"}
+gB.addV() //// this vertex has a property of {_partition:"b"}
 gA.V()
 gB.V()
 ----