Fix typo: DDOM->DOOM (#383)

This commit is contained in:
Dror Levin
2020-03-23 06:09:16 +02:00
committed by GitHub
parent 42b7891047
commit 6e03b0116a

View File

@@ -9,9 +9,9 @@ use std::path::{Path, PathBuf};
const EMACS_UPGRADE: &str = include_str!("emacs.el"); const EMACS_UPGRADE: &str = include_str!("emacs.el");
#[cfg(windows)] #[cfg(windows)]
const DDOM_PATH: &str = "bin/doom.cmd"; const DOOM_PATH: &str = "bin/doom.cmd";
#[cfg(unix)] #[cfg(unix)]
const DDOM_PATH: &str = "bin/doom"; const DOOM_PATH: &str = "bin/doom";
pub struct Emacs { pub struct Emacs {
directory: Option<PathBuf>, directory: Option<PathBuf>,
@@ -47,7 +47,7 @@ impl Emacs {
pub fn new(base_dirs: &BaseDirs) -> Self { pub fn new(base_dirs: &BaseDirs) -> Self {
let directory = Emacs::directory_path(base_dirs); let directory = Emacs::directory_path(base_dirs);
let doom = directory.as_ref().and_then(|d| d.join(DDOM_PATH).if_exists()); let doom = directory.as_ref().and_then(|d| d.join(DOOM_PATH).if_exists());
Self { directory, doom } Self { directory, doom }
} }