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/04/28 23:43:11 UTC

incubator-tinkerpop git commit: fixed a minor typo bug in docs.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master 38cb8aace -> e2b3dd88a


fixed a minor typo bug in docs.


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

Branch: refs/heads/master
Commit: e2b3dd88a8ea3492989b40e5bd0c5c55388d451d
Parents: 38cb8aa
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Tue Apr 28 15:43:06 2015 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Tue Apr 28 15:43:06 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/e2b3dd88/docs/src/the-traversal.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/the-traversal.asciidoc b/docs/src/the-traversal.asciidoc
index b64617d..8e18694 100644
--- a/docs/src/the-traversal.asciidoc
+++ b/docs/src/the-traversal.asciidoc
@@ -29,7 +29,7 @@ At the most general level there is `Traversal<S,E>` which implements `Iterator<E
 
 The classic notion of a graph traversal is provided by `GraphTraversal<S,E>` which extends `Traversal<S,E>`. GraphTraversal provides an interpretation of the graph data in terms of vertices, edges, etc. and thus, a graph traversal link:http://en.wikipedia.org/wiki/Domain-specific_language[DSL].
 
-:IMPORTANT The underlying `Step` implementations provided by TinkerPop should encompass most of the functionality required by a DSL author. It is important that DSL authors leverage the provided steps as then the common optimization and decoration strategies can reason on the underlying traversal sequence. If new steps are introduced, then common traversal strategies may not function properly.
+IMPORTANT: The underlying `Step` implementations provided by TinkerPop should encompass most of the functionality required by a DSL author. It is important that DSL authors leverage the provided steps as then the common optimization and decoration strategies can reason on the underlying traversal sequence. If new steps are introduced, then common traversal strategies may not function properly.
 
 [[graph-traversal-steps]]
 Graph Traversal Steps