Skip to content

Commit

Permalink
fix: Typo in variable name (#5710)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoniePhiline authored Jan 27, 2023
1 parent 4a59d33 commit 2c6bf6f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions helix-view/src/theme.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ impl Loader {
fn load_theme(
&self,
name: &str,
base_them_name: &str,
base_theme_name: &str,
only_default_dir: bool,
) -> Result<Value> {
let path = self.path(name, only_default_dir);
Expand All @@ -94,8 +94,8 @@ impl Loader {
"base16_default" => BASE16_DEFAULT_THEME_DATA.clone(),
_ => self.load_theme(
parent_theme_name,
base_them_name,
base_them_name == parent_theme_name,
base_theme_name,
base_theme_name == parent_theme_name,
)?,
};

Expand Down

0 comments on commit 2c6bf6f

Please sign in to comment.