fix: typos in src/ and subdirectories (#11727)

Found via codespell
This commit is contained in:
luzpaz
2025-09-17 01:37:44 -04:00
committed by GitHub
parent 3176391693
commit e14e850e10
10 changed files with 14 additions and 14 deletions

View File

@@ -321,7 +321,7 @@ impl DesktopManager {
),
// ("DISPLAY", self.display.clone()),
// ("XAUTHORITY", self.xauth.clone()),
// (ENV_DESKTOP_PROTOCAL, XProtocal::X11.to_string()),
// (ENV_DESKTOP_PROTOCOL, XProtocol::X11.to_string()),
]);
self.child_exit.store(false, Ordering::SeqCst);
let is_child_running = self.is_child_running.clone();

View File

@@ -2498,7 +2498,7 @@ pub fn user_accessible_folder() -> ResultType<PathBuf> {
} else if dir2.exists() {
dir = dir2;
} else {
bail!("no vaild user accessible folder");
bail!("no valid user accessible folder");
}
Ok(dir)
}