diff --git a/Cargo.lock b/Cargo.lock index 61d16a1..98f5dbc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -148,9 +148,9 @@ checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" [[package]] name = "proc-macro2" -version = "1.0.94" +version = "1.0.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84" +checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" dependencies = [ "unicode-ident", ] diff --git a/shopify_function_macro/Cargo.toml b/shopify_function_macro/Cargo.toml index 345274b..d4193f1 100644 --- a/shopify_function_macro/Cargo.toml +++ b/shopify_function_macro/Cargo.toml @@ -12,6 +12,6 @@ proc-macro = true [dependencies] syn = { version = "1.0", features = ["full"] } quote = "1.0" -proc-macro2 = "1.0.94" +proc-macro2 = "1.0.95" convert_case = "0.8.0" graphql_client_codegen = "0.14.0" diff --git a/shopify_function_macro/src/lib.rs b/shopify_function_macro/src/lib.rs index d3e34e1..f46d46a 100644 --- a/shopify_function_macro/src/lib.rs +++ b/shopify_function_macro/src/lib.rs @@ -277,7 +277,7 @@ fn extract_shopify_function_return_type(ast: &syn::ItemFn) -> Result<&syn::Ident /// /// The macro takes the following parameters: /// - `query_path`: A path to a GraphQL query, whose result will be used -/// as the input for the function invocation. The query MUST be named "Input". +/// as the input for the function invocation. The query MUST be named "Input". /// - `schema_path`: A path to Shopify's GraphQL schema definition. Use the CLI /// to download a fresh copy. /// - `target` (optional): The API-specific handle for the target if the function name does not match the target handle as `snake_case` @@ -395,7 +395,7 @@ pub fn shopify_function_target( /// /// The macro takes the following parameters: /// - `query_path`: A path to a GraphQL query, whose result will be used -/// as the input for the function invocation. The query MUST be named "Input". +/// as the input for the function invocation. The query MUST be named "Input". /// - `schema_path`: A path to Shopify's GraphQL schema definition. Use the CLI /// to download a fresh copy. /// - `extern_enums` (optional): A list of Enums for which an external type should be used.