Skip to content

Commit 4dc2696

Browse files
committed
Update examples
1 parent 37fac4b commit 4dc2696

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/utils/compact-adjacency-matrix/examples

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/utils/compact-adjacency-matrix/examples/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ for ( i = 0; i < 4; i++ ) {
4040
}
4141

4242
// Print the list of all edges:
43-
console.log( adj.edges() );
43+
console.log( adj.edges );
4444
// => [ [ 0, 2 ], [ 1, 0 ], [ 1, 2 ], [ 2, 3 ] ]
4545

4646
// Convert the adjacency matrix to an adjacency list representation:

0 commit comments

Comments
 (0)