Skip to content

Commit

Permalink
fix_this())
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugobros3 committed Jun 24, 2024
1 parent 60ca7e0 commit 5b1b623
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/thorin/rec_stream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ Stream& Def::stream1(Stream& s) const {
if (global->is_external())
return s.fmt("{}", unique_name());
else
return s.fmt("{}({, }))", op_name(), ops());
return s.fmt("{}({, })", op_name(), ops());
}

return s.fmt("{}({, }))", op_name(), ops());
return s.fmt("{}({, })", op_name(), ops());
}

Stream& Def::stream_let(Stream& s) const {
Expand Down

0 comments on commit 5b1b623

Please sign in to comment.