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 2018/10/05 14:38:00 UTC

tinkerpop git commit: TINKERPOP-1959 Minor fixes to upgrade docs

Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1959 67e56dd60 -> 54a12eb1c


TINKERPOP-1959 Minor fixes to upgrade docs


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

Branch: refs/heads/TINKERPOP-1959
Commit: 54a12eb1ca338ab304f7ca7afc6e2a57c6d23107
Parents: 67e56dd
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Fri Oct 5 10:37:24 2018 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Fri Oct 5 10:37:24 2018 -0400

----------------------------------------------------------------------
 docs/src/upgrade/release-3.2.x-incubating.asciidoc | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/54a12eb1/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 7f1cd18..1615204 100644
--- a/docs/src/upgrade/release-3.2.x-incubating.asciidoc
+++ b/docs/src/upgrade/release-3.2.x-incubating.asciidoc
@@ -107,7 +107,8 @@ via that same method as the other toy graphs with `TinkerFactory.createGratefulD
 
 ==== Gremlin Javascript Script Submission
 
-Gremlin Javascript can now submit script, with optional bindings, using the Client class:
+Gremlin Javascript can now submit script, with optional bindings, using the `Client` class:
+
 [source,javascript]
 ----
 const gremlin = require('gremlin');
@@ -126,7 +127,7 @@ connection.submit('g.V(vid)', {vid: 1})
     });
 ----
 
-and you can also translate bytecode steps into script
+and also allows translation of bytecode steps into script:
 
 [source,javascript]
 ----