From 570cfc6d94cb411b3f8938011c2af4b9ef509bc0 Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Sat, 13 Jan 2024 06:10:36 -0800 Subject: [PATCH] Missing docs --- src/widgets/list.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/widgets/list.rs b/src/widgets/list.rs index bf56faa..a4c530c 100644 --- a/src/widgets/list.rs +++ b/src/widgets/list.rs @@ -28,8 +28,10 @@ impl List { /// The style of a [`List`] widget's item indicators. #[derive(Default, Debug, Clone)] pub enum ListStyle { + /// A solid circle indicator, using the unicode bullet indicator. #[default] Disc, + /// A custom list indicator style. Custom(Arc), }