Skip to content

Commit 640b228

Browse files
committed
Rebase conflicts from this giant stack of patches
List of PRs contained in this rollup: Closes #12167 r=alexcrichton Closes #12200 r=alexcrichton Closes #12206 r=pcwalton Closes #12209 r=huonw Closes #12211 r=pcwalton Closes #12217 r=brson Closes #12218 r=alexcrichton Closes #12220 r=alexcrichton Closes #12222 r=kballard Closes #12225 r=alexcrichton Closes #12227 r=kballard Closes #12237 r=alexcrichton Closes #12240 r=kballard
1 parent 76c313c commit 640b228

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/libstd/comm/select.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ mod test {
531531
let (p, c) = Chan::new();
532532
c.send(());
533533
select!(
534-
() = p.recv() => {},
534+
() = p.recv() => {}
535535
)
536536
})
537537

@@ -540,7 +540,7 @@ mod test {
540540
c.send(());
541541
c.send(());
542542
select!(
543-
() = p.recv() => {},
543+
() = p.recv() => {}
544544
)
545545
})
546546

@@ -549,7 +549,7 @@ mod test {
549549
drop(c.clone());
550550
c.send(());
551551
select!(
552-
() = p.recv() => {},
552+
() = p.recv() => {}
553553
)
554554
})
555555

0 commit comments

Comments
 (0)