From ed02c1b24d22122e292b54950381589f29c5b21e Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sat, 3 Feb 2024 18:56:33 +0100 Subject: Capitalize theme names in docs of `Theme` --- style/src/theme.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'style/src') 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), -- cgit