We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d5948f commit 2e69549Copy full SHA for 2e69549
library/core/src/ffi/mod.rs
@@ -179,7 +179,7 @@ mod c_long_definition {
179
pub type c_ulong = u64;
180
pub type NonZero_c_ulong = crate::num::NonZeroU64;
181
} else {
182
- // The minimal size of `long` in c standard are 32 bits
+ // The minimal size of `long` in the C standard is 32 bits
183
pub type c_long = i32;
184
pub type NonZero_c_long = crate::num::NonZeroI32;
185
pub type c_ulong = u32;
0 commit comments