Skip to content

Commit

Permalink
Ignore only floated combinators definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
imaqtkatt committed Mar 22, 2024
1 parent 76d26d6 commit 9b95445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hvmc_net/mutual_recursion.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ fn show_cycles(cycles: &[Vec<Ref>]) -> String {
.map(|cycle| {
let cycle_str = cycle
.iter()
.filter(|nam| !nam.contains("$"))
.filter(|nam| !nam.contains("$C"))
.chain(cycle.first())
.cloned()
.collect::<Vec<_>>()
Expand Down

0 comments on commit 9b95445

Please sign in to comment.