Skip to content

Commit 1165562

Browse files
correct whitespace
1 parent da71640 commit 1165562

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DOT/Dot.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function savedot(io::IO, g::LightGraphs.AbstractGraph, gname::String = "")
1919
if isdir
2020
for u in LightGraphs.vertices(g)
2121
out_nbrs = LightGraphs.outneighbors(g, u)
22-
length(out_nbrs) == 0 && continue
22+
length(out_nbrs) == 0 && continue
2323
println(io, "\t" * string(u) * " -> {" * join(out_nbrs,',') * "}")
2424
end
2525
else

0 commit comments

Comments
 (0)