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/05/27 00:38:55 UTC

incubator-tinkerpop git commit: made an inject-example simpler in asciidocs.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master 9b9f3cb6b -> 3ab6dbfdb


made an inject-example simpler in asciidocs.


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

Branch: refs/heads/master
Commit: 3ab6dbfdb1fd96a54bd199338268ebc73e3d0337
Parents: 9b9f3cb
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Tue May 26 16:39:07 2015 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Tue May 26 16:39:07 2015 -0600

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


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/3ab6dbfd/docs/src/the-traversal.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/the-traversal.asciidoc b/docs/src/the-traversal.asciidoc
index b5dcc2e..da9db98 100644
--- a/docs/src/the-traversal.asciidoc
+++ b/docs/src/the-traversal.asciidoc
@@ -1387,7 +1387,7 @@ Note that `unfold()` does not recursively unroll iterators. Instead, `repeat()`
 ----
 inject(1,[2,3,[4,5,[6]]])
 inject(1,[2,3,[4,5,[6]]]).unfold()
-inject(1,[2,3,[4,5,[6]]]).repeat(unfold()).until(unfold().count().is(1l)).unfold()
+inject(1,[2,3,[4,5,[6]]]).repeat(unfold()).until(count(local).is(1l)).unfold()
 ----
 
 [[union-step]]