Skip to content

Commit

Permalink
docs(jsdoc): ObjectGraph is inherited class.
Browse files Browse the repository at this point in the history
  • Loading branch information
ivansglazunov committed Sep 2, 2016
1 parent a479f12 commit d9ca085
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/lib/adapters/object.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ import lodash from 'lodash';
import { EventEmitter } from 'fbemitter';

/**
* Class to inherit. Class with methods for control links in graph.
* Inherited class. Class with methods for control links in graph.
* Adapted for array collection.
*
* @class
* @alias ancient-graph.ObjectGraph
*/
export class Graph extends AncientGraph {
class ObjectGraph extends AncientGraph {

/**
* Construct new graph and checks for required adaptation methods.
Expand Down Expand Up @@ -321,4 +321,6 @@ export class Graph extends AncientGraph {
* @param {Link} [newLink] - can be undefined on unlink and remove events
* @param {Object} [context] - additional app information, such as context.userId
*/
};
};

export { ObjectGraph as Graph };

0 comments on commit d9ca085

Please sign in to comment.