Skip to content

Commit

Permalink
Fix typo in transitivereduction function name
Browse files Browse the repository at this point in the history
  • Loading branch information
heliosdrm authored Jul 27, 2022
1 parent d732184 commit 812073d
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 812073d

Please sign in to comment.