Repository: tinkerpop
Updated Branches:
  refs/heads/tp32 cbd3747e6 -> 40f93dd8f


fixed asciidoc formatting issues


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

Branch: refs/heads/tp32
Commit: 40f93dd8f86de956e9ef97286a74c3c1ff4d6935
Parents: cbd3747
Author: Daniel Kuppitz <daniel_kupp...@hotmail.com>
Authored: Tue Sep 26 10:19:26 2017 -0700
Committer: Daniel Kuppitz <daniel_kupp...@hotmail.com>
Committed: Tue Sep 26 10:19:26 2017 -0700

----------------------------------------------------------------------
 docs/src/upgrade/release-3.2.x-incubating.asciidoc | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/40f93dd8/docs/src/upgrade/release-3.2.x-incubating.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/upgrade/release-3.2.x-incubating.asciidoc 
b/docs/src/upgrade/release-3.2.x-incubating.asciidoc
index d578c2d..681631c 100644
--- a/docs/src/upgrade/release-3.2.x-incubating.asciidoc
+++ b/docs/src/upgrade/release-3.2.x-incubating.asciidoc
@@ -357,7 +357,8 @@ gremlin> promise.join()
 gremlin> promise.isDone()
 ==>true
 gremlin> g.V().out().promise{it.toList()}.thenApply{it.size()}.get()
-== ==>6
+==>6
+----
 
 At this time, this method is only used for traversals that are configured 
using `withRemote()`.
 
@@ -636,7 +637,8 @@ behavior for single item array arguments was changed:
 [source,text]
 ----
 gremlin> g.V().hasLabel(["software"] as String[]).count()
-== ==>0
+==>0
+----
 
 Prior this change single item arrays were treated like there was only that 
single item:
 
@@ -645,7 +647,8 @@ Prior this change single item arrays were treated like 
there was only that singl
 gremlin> g.V().hasLabel(["software"] as String[]).count()
 ==>2
 gremlin> g.V().hasLabel("software").count()
-== ==>2
+==>2
+----
 
 TinkerPop 3.2.3 fixes this misbehavior and all `has()` method overloads behave 
like before, except that they no longer
 support no arguments.
@@ -1206,7 +1209,8 @@ gremlin> traversal = 
g.withSideEffect('a',0).V().out().sideEffect{it.sideEffects
 ==>v[3]
 ==>v[3]
 gremlin> traversal.getSideEffects().get('a')
-== ==>1
+==>1
+----
 
 See: link:https://issues.apache.org/jira/browse/TINKERPOP-1192[TINKERPOP-1192],
 https://issues.apache.org/jira/browse/TINKERPOP-1166[TINKERPOP-1166]

Reply via email to