summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorifeanyi <ify1992@yahoo.com>2020-09-09 17:57:45 +0200
committerifeanyi <ify1992@yahoo.com>2020-09-09 17:57:45 +0200
commitb349e8abc91263d91c93c5e8804a18b38d4e3295 (patch)
treef63ab7af5d21337de3d75acd0d3f6fbc597f0115 /src
parente225586953ae244736b3dbd0e12b2a9ffa927abb (diff)
Fix windows typo
Diffstat (limited to 'src')
-rw-r--r--src/utils/fs.rs2
1 files changed, 1 insertions, 1 deletions
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<P: AsRef<Path>, Q: AsRef<Path>>(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"))]