You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by dk...@apache.org on 2018/08/02 21:12:53 UTC

tinkerpop git commit: removed unused callout

Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1990 d8a3626fd -> 25a4ba250


removed unused callout


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

Branch: refs/heads/TINKERPOP-1990
Commit: 25a4ba250eb43b6ad84d54937ad985d22b1bacf7
Parents: d8a3626
Author: Daniel Kuppitz <da...@hotmail.com>
Authored: Thu Aug 2 14:12:48 2018 -0700
Committer: Daniel Kuppitz <da...@hotmail.com>
Committed: Thu Aug 2 14:12:48 2018 -0700

----------------------------------------------------------------------
 docs/src/recipes/shortest-path.asciidoc | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/25a4ba25/docs/src/recipes/shortest-path.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/recipes/shortest-path.asciidoc b/docs/src/recipes/shortest-path.asciidoc
index e25d777..04c542d 100644
--- a/docs/src/recipes/shortest-path.asciidoc
+++ b/docs/src/recipes/shortest-path.asciidoc
@@ -48,7 +48,6 @@ course, it is possible for there to be more than one path in the graph of the sa
 length three), but this example is not considering that.
 <2> It might be interesting to know the path lengths for all paths between vertex "1" and "5".
 <3> Alternatively, one might wish to do a path length distribution over all the paths.
-<4> The preferred way to get a shortest path in OLAP is the `shortestPath()` step.
 
 The following code block demonstrates how the shortest path from `v[1]` to `v[5]` can be queried in OLAP, using the `shortestPath()` step.