From b349e8abc91263d91c93c5e8804a18b38d4e3295 Mon Sep 17 00:00:00 2001 From: ifeanyi Date: Wed, 9 Sep 2020 17:57:45 +0200 Subject: [PATCH] Fix windows typo --- src/utils/fs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/fs.rs b/src/utils/fs.rs index 16247435..dd1ec218 100644 --- a/src/utils/fs.rs +++ b/src/utils/fs.rs @@ -191,7 +191,7 @@ mod tests { #[cfg(target_os = "windows")] fn symlink, Q: AsRef>(src: P, dst: Q) -> Result<()> { - std::os::window::fs::symlink_file(src, dst) + std::os::windows::fs::symlink_file(src, dst) } #[cfg(not(target_os = "windows"))]