From 8e3cc34e27a560193c6c54ca92a7fb36d51f9975 Mon Sep 17 00:00:00 2001 From: Gil Mizrahi Date: Fri, 5 Jan 2024 10:33:20 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Phil Freeman --- rust-connector-sdk/src/connector.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust-connector-sdk/src/connector.rs b/rust-connector-sdk/src/connector.rs index 808520a6..a2a2fda9 100644 --- a/rust-connector-sdk/src/connector.rs +++ b/rust-connector-sdk/src/connector.rs @@ -113,7 +113,7 @@ pub enum ExplainError { /// an error with the client. #[error("invalid request: {0}")] InvalidRequest(String), - /// The request was well formed but was unabled to be + /// The request was well formed but was unable to be /// followed due to semantic errors. This indicates /// an error with the client. #[error("unprocessable content: {0}")] @@ -137,7 +137,7 @@ pub enum MutationError { /// an error with the client. #[error("invalid request: {0}")] InvalidRequest(String), - /// The request was well formed but was unabled to be + /// The request was well formed but was unable to be /// followed due to semantic errors. This indicates /// an error with the client. #[error("unprocessable content: {0}")]