From 75eef3be9680dbe3300186b06e19eac7f9dfab4b Mon Sep 17 00:00:00 2001 From: Pavel Roskin <1317472+proski@users.noreply.github.com> Date: Wed, 25 Oct 2023 16:20:58 -0700 Subject: Fix typos --- alacritty/src/config/monitor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alacritty/src/config/monitor.rs') diff --git a/alacritty/src/config/monitor.rs b/alacritty/src/config/monitor.rs index 3548fc02..f4b39a22 100644 --- a/alacritty/src/config/monitor.rs +++ b/alacritty/src/config/monitor.rs @@ -24,7 +24,7 @@ pub fn watch(mut paths: Vec, event_proxy: EventLoopProxy) { // Exclude char devices like `/dev/null`, sockets, and so on, by checking that file type is a // regular file. paths.retain(|path| { - // Call `metadata` to resolve symbolink links. + // Call `metadata` to resolve symbolic links. path.metadata().map_or(false, |metadata| metadata.file_type().is_file()) }); -- cgit