File tree 1 file changed +2
-2
lines changed
library/std/src/os/windows/io
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ pub struct OwnedHandle {
76
76
/// `NULL`. This ensures that such FFI calls cannot start using the handle without
77
77
/// checking for `NULL` first.
78
78
///
79
- /// This type concerns any value other than `NULL` to be valid, including `INVALID_HANDLE_VALUE`.
79
+ /// This type considers any value other than `NULL` to be valid, including `INVALID_HANDLE_VALUE`.
80
80
/// This is because APIs that use `NULL` as their sentry value don't treat `INVALID_HANDLE_VALUE`
81
81
/// as special.
82
82
///
@@ -96,7 +96,7 @@ pub struct HandleOrNull(OwnedHandle);
96
96
/// `INVALID_HANDLE_VALUE`. This ensures that such FFI calls cannot start using the handle without
97
97
/// checking for `INVALID_HANDLE_VALUE` first.
98
98
///
99
- /// This type concerns any value other than `INVALID_HANDLE_VALUE` to be valid, including `NULL`.
99
+ /// This type considers any value other than `INVALID_HANDLE_VALUE` to be valid, including `NULL`.
100
100
/// This is because APIs that use `INVALID_HANDLE_VALUE` as their sentry value may return `NULL`
101
101
/// under `windows_subsystem = "windows"` or other situations where I/O devices are detached.
102
102
///
You can’t perform that action at this time.
0 commit comments