We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 735464c commit 135c0c6Copy full SHA for 135c0c6
graphql_client_cli/src/main.rs
@@ -70,7 +70,7 @@ fn introspect_schema(
70
) -> Result<(), failure::Error> {
71
use std::io::Write;
72
73
- let mut out: Box<Write> = match output {
+ let out: Box<Write> = match output {
74
Some(path) => Box::new(::std::fs::File::create(path)?),
75
None => Box::new(::std::io::stdout()),
76
};
0 commit comments