Browse Source

Removed illegal type in pointer cheatsheet

Dave Gauer 4 years ago
parent
commit
0ec635fa56
1 changed files with 0 additions and 1 deletions
  1. 0 1
      exercises/054_manypointers.zig

+ 0 - 1
exercises/054_manypointers.zig

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