Skip to content

Commit a3fb98b

Browse files
authored
Fix typo in transitivereduction function name (#160)
1 parent 6555e0d commit a3fb98b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/digraph/transitivity.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ julia> collect(edges(transitivereduction(barbell)))
154154
Edge 6 => 4
155155
```
156156
"""
157-
function transitivereducion end
157+
function transitivereduction end
158158
@traitfn function transitivereduction(g::::IsDirected; selflooped::Bool=false)
159159
scc = strongly_connected_components(g)
160160
cg = condensation(g, scc)

0 commit comments

Comments
 (0)