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 @@ -75,7 +75,7 @@ pub struct OwnedHandle {
75
75
/// `NULL`. This ensures that such FFI calls cannot start using the handle without
76
76
/// checking for `NULL` first.
77
77
///
78
- /// This type concerns any value other than `NULL` to be valid, including `INVALID_HANDLE_VALUE`.
78
+ /// This type considers any value other than `NULL` to be valid, including `INVALID_HANDLE_VALUE`.
79
79
/// This is because APIs that use `NULL` as their sentry value don't treat `INVALID_HANDLE_VALUE`
80
80
/// as special.
81
81
///
@@ -95,7 +95,7 @@ pub struct HandleOrNull(OwnedHandle);
95
95
/// `INVALID_HANDLE_VALUE`. This ensures that such FFI calls cannot start using the handle without
96
96
/// checking for `INVALID_HANDLE_VALUE` first.
97
97
///
98
- /// This type concerns any value other than `INVALID_HANDLE_VALUE` to be valid, including `NULL`.
98
+ /// This type considers any value other than `INVALID_HANDLE_VALUE` to be valid, including `NULL`.
99
99
/// This is because APIs that use `INVALID_HANDLE_VALUE` as their sentry value may return `NULL`
100
100
/// under `windows_subsystem = "windows"` or other situations where I/O devices are detached.
101
101
///
You can’t perform that action at this time.
0 commit comments