diff --git a/bigml/src/client.rs b/bigml/src/client.rs index 9a9f8ba..b6c34b8 100644 --- a/bigml/src/client.rs +++ b/bigml/src/client.rs @@ -130,7 +130,7 @@ impl Client { #[allow(clippy::needless_lifetimes, deprecated)] #[deprecated = "This won't work until BigML fixes Transfer-Encoding: chunked"] pub async fn create_source_from_path(&self, path: PathBuf) -> Result { - // Covnert our path to a stream of `Bytes`. + // Convert our path to a stream of `Bytes`. let file = fs::File::open(&path) .await .map_err(|err| Error::could_not_read_file(&path, err))?;