Skip to content

Commit 135c0c6

Browse files
committed
Remove unnecessary mut
1 parent 735464c commit 135c0c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphql_client_cli/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ fn introspect_schema(
7070
) -> Result<(), failure::Error> {
7171
use std::io::Write;
7272

73-
let mut out: Box<Write> = match output {
73+
let out: Box<Write> = match output {
7474
Some(path) => Box::new(::std::fs::File::create(path)?),
7575
None => Box::new(::std::io::stdout()),
7676
};

0 commit comments

Comments
 (0)