docs: further clarify status_show

This commit is contained in:
rzmk 2025-05-01 15:54:09 -04:00
parent 02915feb1c
commit 64c8f9e9a0
No known key found for this signature in database

View file

@ -65,7 +65,7 @@ let result = ckan
println!("{result:#?}"); println!("{result:#?}");
``` ```
Some endpoints without any parameters may not need a builder such as `/status_show` so there is no need to run `.call()` on `.status_show()`: Some endpoints without any parameters may not need a builder such as `/status_show` so there is no `.call()` method after `.status_show()`:
```rust ```rust
let status_show = ckan.status_show().await?; let status_show = ckan.status_show().await?;