Typo
meemknight opened this issue · 1 comments
meemknight commented
ziglings/exercises/040_pointers2.zig
Line 15 in 268e896
Shouldn't this be the other way around?
You can always make a const pointer to a mutable value (var), but
you cannot make a var pointer to an immutable value (const).
change to
You can always make a var pointer to an immutable value (const), but
you cannot make a const pointer to a mutable value (var).
meemknight commented
Sorry my bad misunderstood the explination