docs: use unwrap in example to extract from Option

This commit is contained in:
Nikita Revenco 2024-12-19 17:39:44 +00:00
parent 6617f1209c
commit b00cac307a

View file

@ -268,7 +268,7 @@ pub enum Color {
/// # Examples
///
/// ```rust
/// let color1 = Color::from_hex("#c0ffee");
/// let color1 = Color::from_hex("#c0ffee").unwrap();
/// let color2 = Color::Rgb(192, 255, 238);
///
/// assert_eq!(color1, color2);