From 25e44b94d5219f875330285e624fa5311bf6920b Mon Sep 17 00:00:00 2001 From: Cyrus Yip Date: Fri, 20 Oct 2023 18:04:40 -0700 Subject: [PATCH] fix Authorization typo --- graphql_client_cli/README.md | 2 +- graphql_client_cli/src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/graphql_client_cli/README.md b/graphql_client_cli/README.md index 22ed3148..18aab172 100644 --- a/graphql_client_cli/README.md +++ b/graphql_client_cli/README.md @@ -23,7 +23,7 @@ FLAGS: ssl verification is turned on by default. OPTIONS: - --authorization Set the contents of the Authorizaiton header. + --authorization Set the contents of the Authorization header. --header ... Specify custom headers. --header 'X-Name: Value' --output Where to write the JSON for the introspected schema. diff --git a/graphql_client_cli/src/main.rs b/graphql_client_cli/src/main.rs index d74e5451..5fd1bcb1 100644 --- a/graphql_client_cli/src/main.rs +++ b/graphql_client_cli/src/main.rs @@ -23,7 +23,7 @@ enum Cli { #[clap(parse(from_os_str))] #[clap(long = "output")] output: Option, - /// Set the contents of the Authorizaiton header. + /// Set the contents of the Authorization header. #[clap(long = "authorization")] authorization: Option, /// Specify custom headers.