You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2016/08/17 23:09:30 UTC

tinkerpop git commit: small fixes to gremlin-variants documentation.

Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1278 570d3a8a7 -> 2bf6dab6f


small fixes to gremlin-variants documentation.


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

Branch: refs/heads/TINKERPOP-1278
Commit: 2bf6dab6f433486e0a7ea3d492710eb41a02c639
Parents: 570d3a8
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Wed Aug 17 17:09:26 2016 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Wed Aug 17 17:09:26 2016 -0600

----------------------------------------------------------------------
 docs/src/reference/gremlin-variants.asciidoc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2bf6dab6/docs/src/reference/gremlin-variants.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/reference/gremlin-variants.asciidoc b/docs/src/reference/gremlin-variants.asciidoc
index be7d3ed..cd50088 100644
--- a/docs/src/reference/gremlin-variants.asciidoc
+++ b/docs/src/reference/gremlin-variants.asciidoc
@@ -61,13 +61,13 @@ Gremlin-Python users will typically make use of the following classes.
 [source,python]
 >>> from gremlin_python import statics
 >>> from gremlin_python.structure.graph import Graph
+>>> from gremlin_python.process.graph_traversal import __
 >>> from gremlin_python.driver.driver_remote_connection import DriverRemoteConnection
 
 In Gremlin-Python there exists `GraphTraversalSource`, `GraphTraversal`, and `__` which mirror the respective classes in Gremlin-Java.
-The `GraphTraversalSource` requires a driver in order to communicate with <<gremlin-server,GremlinServer>> (or any <<connecting-via-remotegraph,`RemoteConnection`>>-enabled server).
-The `gremlin_rest_driver` is provided with Apache TinkerPop and it serves as a simple (though verbose) driver that sends traversals to GremlinServer
-via HTTP POST (using link:http://docs.python-requests.org/[requests]) and in return, is provided <<graphson-reader-writer,GraphSON>>-encoded results.
-`DriverRemoteConnection` extends the abstract class `RemoteConnection` in `gremlin_python.driver`.
+The `GraphTraversalSource` requires a driver in order to communicate with <<gremlin-server,GremlinServer>> (or any
+<<connecting-via-remotegraph,`RemoteConnection`>>-enabled server). The `gremlin_python.driver.driver_remote_connection`
+is provided with Apache TinkerPop's Gremlin-Python distribution.
 
 IMPORTANT: For developers wishing to provide another *driver implementation*, be sure to extend `RemoteConnection` in
 `gremlin_python.driver` so it can then be used by Gremlin-Python's `GraphTraversal`.