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 2016/01/22 18:17:02 UTC

incubator-tinkerpop git commit: fixed typo

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-818 11845b7a0 -> 7bde6fae2


fixed typo


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

Branch: refs/heads/TINKERPOP-818
Commit: 7bde6fae2ae92341a9976a6c59e1305fd98b3a16
Parents: 11845b7
Author: Daniel Kuppitz <da...@hotmail.com>
Authored: Fri Jan 22 18:16:49 2016 +0100
Committer: Daniel Kuppitz <da...@hotmail.com>
Committed: Fri Jan 22 18:16:49 2016 +0100

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


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/7bde6fae/docs/src/reference/the-traversal.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/reference/the-traversal.asciidoc b/docs/src/reference/the-traversal.asciidoc
index 1c82fb3..541e146 100644
--- a/docs/src/reference/the-traversal.asciidoc
+++ b/docs/src/reference/the-traversal.asciidoc
@@ -2024,7 +2024,7 @@ provided predicates are outlined in the table below and are used in various step
 | `within(objects...)` | Is the incoming object in the array of provided objects?
 | `without(objects...)` | Is the incoming object not in the array of the provided objects?
 | `type(class)` | Is the incoming object an instance or a subclass of the provided class?
-| `type(class)` | Is the incoming object neither an instance nor a subclass of the provided class?
+| `notType(class)` | Is the incoming object neither an instance nor a subclass of the provided class?
 |=========================================================
 
 [gremlin-groovy]