1
0
Fork 0
mirror of https://github.com/ratfactor/ziglings synced 2024-05-05 01:56:03 +02:00

Removed illegal type in pointer cheatsheet

This commit is contained in:
Dave Gauer 2021-04-21 20:35:19 -04:00
parent 618eade1e6
commit ca70811f07

View File

@ -46,7 +46,6 @@ pub fn main() void {
// | *u8 | pointer to one u8 |
// | [2]u8 | two u8s |
// | [*]u8 | pointer to unknown number of u8s |
// | [2]const u8 | two immutable u8s |
// | [*]const u8 | pointer to unknown number of immutable u8s |
// | *[2]u8 | pointer to an array of 2 u8s |
// | *const [2]u8 | pointer to an immutable array of 2 u8s |