From bbca563e1288a03339ffd3565f97f0f1e01af5b4 Mon Sep 17 00:00:00 2001 From: Alexandre Bury Date: Fri, 8 Jan 2021 11:57:32 -0800 Subject: [PATCH] Fix NoSuchColor doc --- cursive-core/src/theme/palette.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cursive-core/src/theme/palette.rs b/cursive-core/src/theme/palette.rs index 5d15935..a36c38e 100644 --- a/cursive-core/src/theme/palette.rs +++ b/cursive-core/src/theme/palette.rs @@ -9,7 +9,7 @@ use std::str::FromStr; // Use AHash instead of the slower SipHash type HashMap = std::collections::HashMap; -/// Error +/// Error parsing a color. #[derive(Debug)] pub struct NoSuchColor;