Skip to content

Commit d734b6a

Browse files
Merge pull request #118 from mthelm85/patch-1
Update README.md
2 parents 1b8c963 + e339d2f commit d734b6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ gplot(g, nodelabel=nodelabel, nodelabeldist=1.5, nodelabelangleoffset=π/4)
4747
## Control the node size
4848
```julia
4949
# nodes size proportional to their degree
50-
nodesize = [LightGraphs.out_degree(g, v) for v in LightGraphs.vertices(g)]
50+
nodesize = [LightGraphs.outdegree(g, v) for v in LightGraphs.vertices(g)]
5151
gplot(g, nodesize=nodesize)
5252
```
5353

0 commit comments

Comments
 (0)