We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7225454 commit 3d40fa6Copy full SHA for 3d40fa6
library/std/src/fs.rs
@@ -432,8 +432,9 @@ pub fn set_times<P: AsRef<Path>>(path: P, times: FileTimes) -> io::Result<()> {
432
///
433
/// # Platform-specific behavior
434
435
-/// This function currently corresponds to the `utimensat` function with `AT_SYMLINK_NOFOLLOW`
436
-/// on Unix platforms and the `SetFileTime` function on Windows after opening the symlink.
+/// This function currently corresponds to the `utimensat` function with `AT_SYMLINK_NOFOLLOW` on
+/// Unix platforms, the `setattrlist` function with `FSOPT_NOFOLLOW` on Apple platforms, and the
437
+/// `SetFileTime` function on Windows.
438
439
/// # Errors
440
0 commit comments