]> git.lizzy.rs Git - rust.git/commitdiff
Update comment
authorDavid Cook <divergentdave@gmail.com>
Wed, 29 Jan 2020 04:59:28 +0000 (22:59 -0600)
committerDavid Cook <divergentdave@gmail.com>
Wed, 29 Jan 2020 04:59:28 +0000 (22:59 -0600)
src/shims/fs.rs

index c5017dc85bbd317f49986a2068f7bd59b356abef..b5c0dead1f8f652c2147811cca65e740435f7fa5 100644 (file)
@@ -432,9 +432,8 @@ fn statx(
         // * interpreting `path` as a path relative to `dirfd` when the latter is `AT_FDCWD`, or
         // * interpreting `dirfd` as any file descriptor when `path` is empty and AT_EMPTY_PATH is
         // set.
-        // The behavior of `statx` with a relative path and a directory file descriptor other than
-        // `AT_FDCWD` is specified but it cannot be tested from `libstd`. If you found this error,
-        // please open an issue reporting it.
+        // Other behaviors cannot be tested from `libstd` and thus are not implemented. If you
+        // found this error, please open an issue reporting it.
         if !(
             path.is_absolute() ||
             dirfd == this.eval_libc_i32("AT_FDCWD")? ||