about summary refs log tree commit diff
path: root/library/std/src/sys
diff options
context:
space:
mode:
authorNagaChaitanya Vellanki <pnagato@protonmail.com>2023-03-16 17:07:41 -0700
committerNagaChaitanya Vellanki <pnagato@protonmail.com>2023-03-16 17:07:41 -0700
commit0aad0b32ae05d7d03d0c18c7083edf02c7e3f857 (patch)
tree9de57cb4fb8a127ffc58a68f872757a528661803 /library/std/src/sys
parent2dbda0af15f95c5e816f9357c59fad3576e1a45a (diff)
downloadrust-0aad0b32ae05d7d03d0c18c7083edf02c7e3f857.tar.gz
rust-0aad0b32ae05d7d03d0c18c7083edf02c7e3f857.zip
run rustfmt on changes
Diffstat (limited to 'library/std/src/sys')
-rw-r--r--library/std/src/sys/windows/fs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys/windows/fs.rs b/library/std/src/sys/windows/fs.rs
index a4161c1c3c4..ef8f73645be 100644
--- a/library/std/src/sys/windows/fs.rs
+++ b/library/std/src/sys/windows/fs.rs
@@ -1246,7 +1246,7 @@ pub fn stat(path: &Path) -> io::Result<FileAttr> {
                 }
             }
             Err(err)
-        },
+        }
         Ok(attrs) => Ok(attrs),
     }
 }