From 12eab06a6555c7691a8c8b24923d067c261e5bce Mon Sep 17 00:00:00 2001 From: Nikita Revenco <154856872+NikitaRevenco@users.noreply.github.com> Date: Thu, 19 Dec 2024 17:49:02 +0000 Subject: [PATCH] docs: missing semicolon --- helix-view/src/graphics.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-view/src/graphics.rs b/helix-view/src/graphics.rs index 8fa40808ca67e..6ecc8076b95f0 100644 --- a/helix-view/src/graphics.rs +++ b/helix-view/src/graphics.rs @@ -269,7 +269,7 @@ impl Color { /// # Examples /// /// ```rust - /// use helix_view::theme::Color + /// use helix_view::theme::Color; /// /// let color1 = Color::from_hex("#c0ffee").unwrap(); /// let color2 = Color::Rgb(192, 255, 238);