diff --git a/torn-api/README.md b/torn-api/README.md index 8196c12..75e5cd2 100644 --- a/torn-api/README.md +++ b/torn-api/README.md @@ -91,7 +91,7 @@ let basic = client.fetch(UserBasicRequest(UserId(1))).await.unwrap(); ``` ### Implementing your own API executor -If you don't wish to use reqwest, or want to use custom logic for which API to use, you have to implement the [`Executor`](https://docs.rs/torn-api/latest/torn_api/executor/trait.Executor.html) trait for your custom executor. +If you don't wish to use reqwest, or want to use custom logic for which API key to use, you have to implement the [`Executor`](https://docs.rs/torn-api/latest/torn_api/executor/trait.Executor.html) trait for your custom executor. ## Safety The crate is compiled with `#![forbid(unsafe_code)]`. diff --git a/torn-api/src/lib.rs b/torn-api/src/lib.rs index 935ad6f..1899db6 100644 --- a/torn-api/src/lib.rs +++ b/torn-api/src/lib.rs @@ -97,7 +97,7 @@ //! ``` //! //! ### Implementing your own API executor -//! If you don't wish to use reqwest, or want to use custom logic for which API to use, you have to implement the [`Executor`](https://docs.rs/torn-api/latest/torn_api/executor/trait.Executor.html) trait for your custom executor. +//! If you don't wish to use reqwest, or want to use custom logic for which API key to use, you have to implement the [`Executor`](https://docs.rs/torn-api/latest/torn_api/executor/trait.Executor.html) trait for your custom executor. //! //! ## Safety //! The crate is compiled with `#![forbid(unsafe_code)]`.