diff options
| author | seth <[email protected]> | 2023-12-15 02:04:28 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-12-15 16:41:13 -0500 |
| commit | 32d42d5fbab9c74dbe59fbdb94a29112f8766e27 (patch) | |
| tree | 79111090bf837fc97fc5303f1fe93e6a550e6b06 /src/api/guzzle.rs | |
| parent | e38a441e37ec1a1dff07cf8bcff3e36a411709aa (diff) | |
commands: improve descriptions
Diffstat (limited to 'src/api/guzzle.rs')
| -rw-r--r-- | src/api/guzzle.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/guzzle.rs b/src/api/guzzle.rs index 0533c8b..1f285e9 100644 --- a/src/api/guzzle.rs +++ b/src/api/guzzle.rs @@ -18,7 +18,7 @@ pub async fn get_random_teawie() -> Result<String> { .get(format!("{GUZZLE}{RANDOM_TEAWIE}")) .build()?; - debug!("making request to {}", req.url()); + debug!("Making request to {}", req.url()); let resp = REQWEST_CLIENT.execute(req).await?; let status = resp.status(); |
