mirror of https://gitee.com/bigwinds/arangodb
fixed grammar
This commit is contained in:
parent
2c0f5b96c9
commit
d37f4593b0
|
@ -55,7 +55,7 @@ function EventLibrary() {
|
|||
|
||||
this.checkExpandConfig = function(config) {
|
||||
if (config.startCallback === undefined) {
|
||||
throw "A callback to the Start-method has to be defined";
|
||||
throw "A callback to the start-method has to be defined";
|
||||
}
|
||||
if (config.adapter === undefined || config.adapter.explore === undefined) {
|
||||
throw "An adapter to load data has to be defined";
|
||||
|
@ -99,7 +99,7 @@ function EventLibrary() {
|
|||
throw "An adapter has to be defined";
|
||||
}
|
||||
if (config.shaper === undefined) {
|
||||
throw "A Node Shaper has to be defined";
|
||||
throw "A node shaper has to be defined";
|
||||
}
|
||||
return true;
|
||||
};
|
||||
|
@ -109,7 +109,7 @@ function EventLibrary() {
|
|||
throw "An adapter has to be defined";
|
||||
}
|
||||
if (config.shaper === undefined) {
|
||||
throw "An Edge Shaper has to be defined";
|
||||
throw "An edge Shaper has to be defined";
|
||||
}
|
||||
return true;
|
||||
};
|
||||
|
|
|
@ -504,7 +504,7 @@
|
|||
"newEdgeDefinitions" + self.counter,
|
||||
"Edge definitions",
|
||||
edgeDefinition.collection,
|
||||
"An Edge Definition defines a relations of the graph",
|
||||
"An edge definition defines a relation of the graph",
|
||||
"Edge definitions",
|
||||
true,
|
||||
false,
|
||||
|
@ -519,7 +519,7 @@
|
|||
"newEdgeDefinitions" + self.counter,
|
||||
"Edge definitions",
|
||||
edgeDefinition.collection,
|
||||
"An Edge Definition defines a relations of the graph",
|
||||
"An edge definition defines a relation of the graph",
|
||||
"Edge definitions",
|
||||
false,
|
||||
true,
|
||||
|
@ -534,7 +534,7 @@
|
|||
"fromCollections" + self.counter,
|
||||
"fromCollections",
|
||||
edgeDefinition.from,
|
||||
"The collection that contain the start vertices of the relation.",
|
||||
"The collections that contain the start vertices of the relation.",
|
||||
"fromCollections",
|
||||
true,
|
||||
false,
|
||||
|
@ -548,7 +548,7 @@
|
|||
"toCollections" + self.counter,
|
||||
"toCollections",
|
||||
edgeDefinition.to,
|
||||
"The collection that contain the end vertices of the relation.",
|
||||
"The collections that contain the end vertices of the relation.",
|
||||
"toCollections",
|
||||
true,
|
||||
false,
|
||||
|
@ -566,7 +566,7 @@
|
|||
"newVertexCollections",
|
||||
"Vertex collections",
|
||||
orphanCollections,
|
||||
"Collections, that are part of a graph, but not used in an edge definition",
|
||||
"Collections that are part of a graph but not used in an edge definition",
|
||||
"Vertex Collections",
|
||||
false,
|
||||
false,
|
||||
|
|
Loading…
Reference in New Issue