From 64c8f9e9a0dd0ff975be284c488f9bc166f09f68 Mon Sep 17 00:00:00 2001 From: rzmk <30333942+rzmk@users.noreply.github.com> Date: Thu, 1 May 2025 15:54:09 -0400 Subject: [PATCH] docs: further clarify status_show --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 971ce42..d58647a 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ let result = ckan 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 let status_show = ckan.status_show().await?;