Fixed typos in char-bool.md

This commit is contained in:
Maddux Vitrano
2023-12-14 01:10:30 -06:00
committed by GitHub
parent 4b4d3453b3
commit b13c971969

View File

@ -75,7 +75,7 @@ use std::mem::size_of_val;
fn main() { fn main() {
let unit: () = (); let unit: () = ();
// unit type does't occupy any memeory space // unit type doesn't occupy any memory space
assert!(size_of_val(&unit) == 0); assert!(size_of_val(&unit) == 0);
} }
``` ```