Skip to content

Commit

Permalink
Fix typo in transitivereduction function name (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
heliosdrm committed Aug 22, 2022
1 parent 6555e0d commit a3fb98b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/digraph/transitivity.jl
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ julia> collect(edges(transitivereduction(barbell)))
Edge 6 => 4
```
"""
function transitivereducion end
function transitivereduction end
@traitfn function transitivereduction(g::::IsDirected; selflooped::Bool=false)
scc = strongly_connected_components(g)
cg = condensation(g, scc)
Expand Down

0 comments on commit a3fb98b

Please sign in to comment.