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 2015/06/30 16:39:48 UTC

incubator-tinkerpop git commit: fixed a select() reference in the-graph.asciidoc.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master f6a1a7d1b -> 28aa61c1b


fixed a select() reference in the-graph.asciidoc.


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

Branch: refs/heads/master
Commit: 28aa61c1b25caca2a0615fb54f5b098dcbf42d2f
Parents: f6a1a7d
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Tue Jun 30 08:39:52 2015 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Tue Jun 30 08:39:52 2015 -0600

----------------------------------------------------------------------
 docs/src/the-graph.asciidoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/28aa61c1/docs/src/the-graph.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/the-graph.asciidoc b/docs/src/the-graph.asciidoc
index 8c5cbc9..3698e4c 100644
--- a/docs/src/the-graph.asciidoc
+++ b/docs/src/the-graph.asciidoc
@@ -114,11 +114,11 @@ image::the-crew-graph.png[width=685]
 g.V().as('a').
       properties('location').as('b').
       hasNot('endTime').as('c').
-      select().by('name').by(value).by('startTime') // determine the current location of each person
+      select('a','b','c').by('name').by(value).by('startTime') // determine the current location of each person
 g.V().has('name','gremlin').inE('uses').
       order().by('skill',incr).as('a').
       outV().as('b').
-      select().by('skill').by('name') // rank the users of gremlin by their skill level
+      select('a','b').by('skill').by('name') // rank the users of gremlin by their skill level
 ----
 
 Graph Variables