fix typo on D3 layout "separation" method

"separation" is the method name and was names "seperation" into the definition
This commit is contained in:
Laurent Leborgne
2014-11-26 09:23:02 +01:00
parent 266324c29c
commit 13da362b0e
Vendored
+4 -4
View File
@@ -1162,7 +1162,7 @@ declare module D3 {
/**
* If separation is specified, uses the specified function to compute separation between neighboring nodes. If separation is not specified, returns the current separation function
*/
seperation: {
separation: {
/**
* Gets the current separation function
*/
@@ -1170,7 +1170,7 @@ declare module D3 {
/**
* Sets the specified function to compute separation between neighboring nodes
*/
(seperation: (a: GraphNode, b: GraphNode) => number): TreeLayout;
(separation: (a: GraphNode, b: GraphNode) => number): TreeLayout;
};
/**
* Gets or sets the available layout size
@@ -1382,9 +1382,9 @@ declare module D3 {
}
nodes(root: GraphNode): GraphNode[];
links(nodes: GraphNode[]): GraphLink[];
seperation: {
separation: {
(): (a: GraphNode, b: GraphNode) => number;
(seperation: (a: GraphNode, b: GraphNode) => number): ClusterLayout;
(separation: (a: GraphNode, b: GraphNode) => number): ClusterLayout;
}
size: {
(): number[];