Capitalize theme names in docs of Theme

This commit is contained in:
Héctor Ramón Jiménez 2024-02-03 18:56:33 +01:00
parent 25779358b6
commit ed02c1b24d
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -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>),