ratfactor/ziglings

Typo

meemknight opened this issue · 1 comments

// You can always make a const pointer to a mutable value (var), but

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).

Sorry my bad misunderstood the explination