about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Gervai <grin@grin.hu>2024-11-14 22:01:13 +0100
committerPeter Gervai <grin@grin.hu>2024-11-14 22:01:13 +0100
commit451c8cdb06b5d4033fe245ce19fdd9bfabd13f1f (patch)
tree408a8e6561d60d98b56703349dd9a443f69a571d
parent3408dc1eb5f8d744b4d7d5a4392ae6456f036ad9 (diff)
downloadrust-451c8cdb06b5d4033fe245ce19fdd9bfabd13f1f.tar.gz
rust-451c8cdb06b5d4033fe245ce19fdd9bfabd13f1f.zip
Remove one stray space.
-rw-r--r--library/std/src/os/unix/fs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/os/unix/fs.rs b/library/std/src/os/unix/fs.rs
index 92613d9b004..7c2c3f33d80 100644
--- a/library/std/src/os/unix/fs.rs
+++ b/library/std/src/os/unix/fs.rs
@@ -985,7 +985,7 @@ impl DirBuilderExt for fs::DirBuilder {
 /// Changing the owner typically requires privileges, such as root or a specific capability.
 /// Changing the group typically requires either being the owner and a member of the group, or
 /// having privileges.
-/// 
+///
 /// Be aware that changing owner clears the `suid` and `sgid` permission bits in most cases
 /// according to POSIX, usually even if the user is root. The sgid is not cleared when
 /// the file is non-group-executable. See: <https://www.man7.org/linux/man-pages/man2/chown.2.html>