We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f32d298 + 7ff9648 commit 3c0f472Copy full SHA for 3c0f472
library/std/src/sys/windows/api.rs
@@ -48,7 +48,7 @@ use super::c;
48
/// converted to a `u32`. Clippy would warn about this but, alas, it's not run
49
/// on the standard library.
50
const fn win32_size_of<T: Sized>() -> u32 {
51
- // Const assert that the size is less than u32::MAX.
+ // Const assert that the size does not exceed u32::MAX.
52
// Uses a trait to workaround restriction on using generic types in inner items.
53
trait Win32SizeOf: Sized {
54
const WIN32_SIZE_OF: u32 = {
0 commit comments