Skip to content

Commit

Permalink
fix from and to params
Browse files Browse the repository at this point in the history
  • Loading branch information
Yura Evtushenko committed Aug 24, 2015
1 parent 2e7b178 commit 35f9ae3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions jug/jug.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ declare module "jug" {
/**
* Verify if the current node is the root.
*/
isRoot(): boolean
isRoot(): boolean;

/**
* Set node data.
Expand All @@ -91,10 +91,10 @@ declare module "jug" {

/**
* Get distance between nodes.
* @param from {string}
* @param to {string}
* @param from
* @param to
*/
proximity(from, to): Array<number>;
proximity(from:string, to:string): Array<number>;

/**
* Find a node.
Expand Down

0 comments on commit 35f9ae3

Please sign in to comment.