Skip to content

Commit

Permalink
Fix a few typos in JSDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
jriecken committed Mar 5, 2021
1 parent a91af2f commit c92b4f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/dep_graph.js
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ DepGraph.prototype = {
}
},
/**
* get an array of nodes that have no dependants (i.e. nothing depends on them).
* Get an array of nodes that have no dependants (i.e. nothing depends on them).
*/
entryNodes: function () {
var self = this;
Expand Down
2 changes: 1 addition & 1 deletion lib/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ declare module 'dependency-graph' {
dependantsOf(name: string, leavesOnly?: boolean): string[];

/**
* Alias of `dependentsOf`
* Alias of `dependantsOf`
*
* @see dependantsOf
* @param name
Expand Down

0 comments on commit c92b4f3

Please sign in to comment.