Skip to content

Commit 808fad0

Browse files
committed
fix: unnecessary parentheses
1 parent f7ccc2f commit 808fad0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/os/windows/named_pipe.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ fn drive_server<L: Debug>(
4444
id: &str,
4545
name_sender: Sender<Arc<str>>,
4646
num_clients: u32,
47-
mut createfn: impl (FnMut(PipeListenerOptions<'_>) -> io::Result<L>),
47+
mut createfn: impl FnMut(PipeListenerOptions<'_>) -> io::Result<L>,
4848
mut acceptfn: impl FnMut(&mut L) -> TestResult,
4949
) -> TestResult {
5050
let (name, mut listener) = listen_and_pick_name(&mut namegen_named_pipe(id), |nm| {

0 commit comments

Comments
 (0)