Skip to content

Commit 62c50ae

Browse files
committed
Merge branch 'fix-2' into fix-8
2 parents 01b5235 + 8731e79 commit 62c50ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jsgraphs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ var jsgraphs = jsgraphs || {};
7171

7272
Stack.prototype.toArray = function() {
7373
var result = [];
74-
x = this.first;
74+
var x = this.first;
7575
while (x != null) {
7676
result.push(x.value);
7777
x = x.next;

0 commit comments

Comments
 (0)