From ceb94dab985400958da8f9902c6bde4ef5ccdc7c Mon Sep 17 00:00:00 2001 From: Divma <26765164+divagant-martian@users.noreply.github.com> Date: Mon, 12 Aug 2024 08:41:20 -0500 Subject: [PATCH] docs(iroh-cli): fix help text for incomplete blobs (#2615) ## Description Aligns the help text for `blobs list incomplete-blobs` with the docs in iroh.computer. ## Breaking Changes n/a ## Notes & open questions n/a ## Change checklist - [x] Self-review. - [x] Documentation updates following the [style guide](https://rust-lang.github.io/rfcs/1574-more-api-documentation-conventions.html#appendix-a-full-conventions-text), if relevant. - [ ] ~~Tests if relevant.~~ - [ ] ~~All breaking changes documented.~~ --- iroh-cli/src/commands/blobs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iroh-cli/src/commands/blobs.rs b/iroh-cli/src/commands/blobs.rs index 6e4c0aeba2..f1ed55500f 100644 --- a/iroh-cli/src/commands/blobs.rs +++ b/iroh-cli/src/commands/blobs.rs @@ -436,7 +436,7 @@ pub struct BlobAddOptions { pub enum ListCommands { /// List the available blobs on the running provider. Blobs, - /// List the available blobs on the running provider. + /// List the blobs on the running provider that are not full files. IncompleteBlobs, /// List the available collections on the running provider. Collections,