Skip to content

Commit ec2aa98

Browse files
clean up trailing space
1 parent 95e6ea9 commit ec2aa98

File tree

1 file changed

+3
-3
lines changed
  • js/src/001 undirected/online/data

1 file changed

+3
-3
lines changed

js/src/001 undirected/online/data/dense.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ var dense_graph_t = function(){
4949
this.pt[i][j][0] = u;
5050
this.pt[i][j][1] = v;
5151
this.pt[i][j][2] = w;
52-
52+
5353
return this.pt[i][j];
5454

5555
};
@@ -67,7 +67,7 @@ var dense_graph_t = function(){
6767
graph.prototype.vitr = function(fn){
6868

6969
for(var i = 0, len = this.ad.length; i < len; ++i){
70-
70+
7171
if(fn.call(this, this.ad[i])) break;
7272

7373
}
@@ -121,4 +121,4 @@ var dense_graph_t = function(){
121121

122122
};
123123

124-
exports.dense_graph_t = dense_graph_t;
124+
exports.dense_graph_t = dense_graph_t;

0 commit comments

Comments
 (0)