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 2016/08/31 20:31:42 UTC

tinkerpop git commit: Fixed RST formatting of code again...... CTR

Repository: tinkerpop
Updated Branches:
  refs/heads/master 2baaaa766 -> 0f16a85a6


Fixed RST formatting of code again...... CTR


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

Branch: refs/heads/master
Commit: 0f16a85a6534bd49884dda00e329df09944f8d6a
Parents: 2baaaa7
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Wed Aug 31 16:31:27 2016 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Wed Aug 31 16:31:27 2016 -0400

----------------------------------------------------------------------
 gremlin-python/src/main/jython/README | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/0f16a85a/gremlin-python/src/main/jython/README
----------------------------------------------------------------------
diff --git a/gremlin-python/src/main/jython/README b/gremlin-python/src/main/jython/README
index a42db62..4abab1b 100644
--- a/gremlin-python/src/main/jython/README
+++ b/gremlin-python/src/main/jython/README
@@ -30,7 +30,7 @@ Gremlin-Python implements Gremlin within the Python language and can be used on
 the popular CPython machine. Python\u2019s syntax has the same constructs as Java including "dot notation" for function
 chaining ``(a.b.c)``, round bracket function arguments ``(a(b,c))```, and support for global namespaces
 ``(a(b()) vs a(__.b()))```. As such, anyone familiar with Gremlin-Java will immediately be able to work with
-Gremlin-Python. Moreover, there are a few added constructs to Gremlin-Python that make traversals a bit more succinct._::
+Gremlin-Python. Moreover, there are a few added constructs to Gremlin-Python that make traversals a bit more succinct.
 
     >>> g.V().both()[1:3].toList()
     [v[2], v[4]]