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/09/15 15:59:41 UTC

[2/6] tinkerpop git commit: forgot a <4> marking.

forgot a <4> marking.


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

Branch: refs/heads/master
Commit: fe21ce16062b0c03813994d7eb82a5071d463477
Parents: 82a1bc0
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Thu Sep 15 05:46:12 2016 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Thu Sep 15 09:58:53 2016 -0600

----------------------------------------------------------------------
 docs/src/recipes/traversal-induced-values.asciidoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/fe21ce16/docs/src/recipes/traversal-induced-values.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/recipes/traversal-induced-values.asciidoc b/docs/src/recipes/traversal-induced-values.asciidoc
index 74402b6..5f48591 100644
--- a/docs/src/recipes/traversal-induced-values.asciidoc
+++ b/docs/src/recipes/traversal-induced-values.asciidoc
@@ -48,7 +48,7 @@ itself.
 g.V().has('name','marko').as('marko').      <1>
   out('knows').as('friend').                <2>
     where('friend', gt('marko')).by('age'). <3>
-  values('name')
+  values('name')                            <4>
 ----
 
 <1> Find the "marko" `Vertex` and label it as "marko".