diff options
author | 2024-02-03 18:56:33 +0100 | |
---|---|---|
committer | 2024-02-03 18:56:33 +0100 | |
commit | ed02c1b24d22122e292b54950381589f29c5b21e (patch) | |
tree | fe8fcec55cce4d8ff74bbf234e1e250bc55bcc1c /style | |
parent | 25779358b641af1b309fd5b4ec163ef8c2e38f1e (diff) | |
download | iced-ed02c1b24d22122e292b54950381589f29c5b21e.tar.gz iced-ed02c1b24d22122e292b54950381589f29c5b21e.tar.bz2 iced-ed02c1b24d22122e292b54950381589f29c5b21e.zip |
Capitalize theme names in docs of `Theme`
Diffstat (limited to 'style')
-rw-r--r-- | style/src/theme.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/style/src/theme.rs b/style/src/theme.rs index 890f6dce..96f91260 100644 --- a/style/src/theme.rs +++ b/style/src/theme.rs @@ -35,17 +35,17 @@ pub enum Theme { Light, /// The built-in dark variant. Dark, - /// The built-in dracula variant. + /// The built-in Dracula variant. Dracula, - /// The built-in nord variant. + /// The built-in Nord variant. Nord, - /// The built-in solarized light variant. + /// The built-in Solarized Light variant. SolarizedLight, - /// The built-in solarized dark variant. + /// The built-in Solarized Dark variant. SolarizedDark, - /// The built-in gruvbox light variant. + /// The built-in Gruvbox Light variant. GruvboxLight, - /// The built-in gruvbox dark variant. + /// The built-in Gruvbox Dark variant. GruvboxDark, /// A [`Theme`] that uses a [`Custom`] palette. Custom(Arc<Custom>), |