diff options
| author | Dave Gauer <[email protected]> | 2021-04-21 20:35:19 -0400 |
|---|---|---|
| committer | Dave Gauer <[email protected]> | 2021-04-21 20:35:19 -0400 |
| commit | 0ec635fa56f0c057f64691abcb5140858f97df52 (patch) | |
| tree | ab7d062a35dcd61e0ac7463900f0e6e7aad9d33a | |
| parent | 9c095c60a41f1e43356ee80879436523cf4aa7ab (diff) | |
| download | ziglings-0ec635fa56f0c057f64691abcb5140858f97df52.tar.xz ziglings-0ec635fa56f0c057f64691abcb5140858f97df52.zip | |
Removed illegal type in pointer cheatsheet
| -rw-r--r-- | exercises/054_manypointers.zig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/exercises/054_manypointers.zig b/exercises/054_manypointers.zig index adfea36..695b55e 100644 --- a/exercises/054_manypointers.zig +++ b/exercises/054_manypointers.zig @@ -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 | |
