diff --git a/src/http.rs b/src/http.rs index 9f7698d..df0f367 100644 --- a/src/http.rs +++ b/src/http.rs @@ -90,8 +90,8 @@ pub struct HttpClient { } impl HttpClient { - /// In production you typically would want set this to . Yet you - /// may want to use a different instances for testing. + /// In production you typically would want set this to . + /// Yet you may want to use a different instance for testing. pub fn with_base_url(host: String, api_token: Option) -> Result { let http = ClientBuilder::new().build()?; diff --git a/src/lib.rs b/src/lib.rs index e9d28de..139c9ff 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -84,8 +84,8 @@ impl Client { /// Use your on-premise inference with your API token for all requests. /// - /// In production you typically would want set this to . Yet - /// you may want to use a different instances for testing. + /// In production you typically would want set this to . + /// Yet you may want to use a different instance for testing. pub fn with_base_url( host: impl Into, api_token: impl Into,