Skip to content

Commit

Permalink
Rename isAcylic -> isAcyclic
Browse files Browse the repository at this point in the history
  • Loading branch information
simonratner authored and cpettitt committed May 22, 2015
1 parent d5d7d8c commit 88e11a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/alg/is-acylic-test.js → test/alg/is-acyclic-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ var expect = require("../chai").expect,
Graph = require("../..").Graph,
isAcyclic = require("../..").alg.isAcyclic;

describe("alg.isAcylic", function() {
describe("alg.isAcyclic", function() {
it("returns true if the graph has no cycles", function() {
var g = new Graph();
g.setPath(["a", "b", "c"]);
Expand Down

0 comments on commit 88e11a8

Please sign in to comment.