Skip to content

Commit

Permalink
Fix formatting in ADR
Browse files Browse the repository at this point in the history
  • Loading branch information
rucek committed Oct 31, 2023
1 parent 8f08365 commit 8108358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/adr/0001-error-propagation-in-channels.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def mapParUnordered[U](parallelism: Int)(f: T => U)(using Ox, StageCapacity): So
s.acquire()
receive() match
case ChannelClosed.Done => false
case ChannelClosed.Error(r) => // (2)
case ChannelClosed.Error(r) => // (2)
c.error(r)
false
case t: T @unchecked =>
Expand Down

0 comments on commit 8108358

Please sign in to comment.