Merge pull request #5474 from Will-Low/Docstring

Update doctring for BoolishValueParser::new
This commit is contained in:
Ed Page 2024-04-23 14:26:42 -05:00 committed by GitHub
commit 43efde98ec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1913,7 +1913,7 @@ impl Default for FalseyValueParser {
pub struct BoolishValueParser {}
impl BoolishValueParser {
/// Parse bool-like string values, everything else is `true`
/// Parse bool-like string values, everything else is an error.
pub fn new() -> Self {
Self {}
}