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 11:46:16 UTC

tinkerpop git commit: forgot a <4> marking.

Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1330 9949487f3 -> e59dc650a


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/e59dc650
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/e59dc650
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/e59dc650

Branch: refs/heads/TINKERPOP-1330
Commit: e59dc650ace043b477b249b59a760f0a9bd4ae50
Parents: 9949487
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 05:46:12 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/e59dc650/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".