From b0081ef9f3923d48cd1101077cfdf84cfbda7577 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Sat, 1 Nov 2025 01:11:02 -0400 Subject: [PATCH] chore(options): fix incorrect comment about values --- src/options/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/options/parser.rs b/src/options/parser.rs index d6f14fa..40a5940 100644 --- a/src/options/parser.rs +++ b/src/options/parser.rs @@ -96,7 +96,7 @@ pub trait OptionsRepresentable { let maybe_next = iterator.peek(); // If the next value isn't another option, set the value to the next value. - // Otherwise, it is an empty string. + // Otherwise, it is None. value = if let Some(next) = maybe_next && !next.starts_with("--") {