From 9d8905354efca612a1e9fe87845293a4460e0553 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Mon, 4 Aug 2025 21:03:48 +0300 Subject: [PATCH] expand comment strings 80 chars is good. Signed-off-by: NotAShelf Change-Id: I6a6a696460754266ff5810a73f98ce9e6eb0c35b --- src/main.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/main.rs b/src/main.rs index 41a1818..5dd99c1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -33,10 +33,9 @@ fn main() -> Result<(), Box> { Ok(()) } -// Struct to hold all the fields we need to print -// helps avoid clippy warnings about argument count -// and makes it easier to pass around, though its -// not like we need to +// Struct to hold all the fields we need in order to print the fetch. This +// helps avoid Clippy warnings about argument count, and makes it slightly +// easier to pass data around. Though, it is not like we really need to. struct Fields { user_info: String, os_name: String,