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 2016/01/05 23:54:34 UTC

[02/50] incubator-tinkerpop git commit: fixed typo

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/be30e2db
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/be30e2db
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/be30e2db

Branch: refs/heads/TINKERPOP-1033
Commit: be30e2db324c81c4aedcce8e0c848caa84610601
Parents: 2523090
Author: Daniel Kuppitz <da...@hotmail.com>
Authored: Fri Dec 18 12:41:53 2015 +0100
Committer: Daniel Kuppitz <da...@hotmail.com>
Committed: Fri Dec 18 12:41:53 2015 +0100

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


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/be30e2db/docs/src/reference/the-graphcomputer.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/reference/the-graphcomputer.asciidoc b/docs/src/reference/the-graphcomputer.asciidoc
index 924215d..d2a429a 100644
--- a/docs/src/reference/the-graphcomputer.asciidoc
+++ b/docs/src/reference/the-graphcomputer.asciidoc
@@ -366,7 +366,7 @@ It's recommended to tune this property for the target graph and not use the defa
 
 NOTE: `BulkLoaderVertexProgram` uses the `IncrementalBulkLoader` by default. The other option is the `OneTimeBulkLoader`,
 which doesn't store any temporary IDs in the `writeGraph` and thus should only be used for initial bulk loads. Both
-implementations should cover the mahority of use-cases, but have a limitation though: They don't support multi-valued
+implementations should cover the majority of use-cases, but have a limitation though: They don't support multi-valued
 properties. `OneTimeBulkLoader` and `IncrementalBulkLoader` will handle every property as a single-valued property. A
 custom `BulkLoader` implementation has to be used if the default behavior is not sufficient.