You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ziglings/patches/patches/046_optionals2.patch

9 lines
216 B
Diff

24c24
< tail: *Elephant = null, // Hmm... tail needs something...
---
> tail: ?*Elephant = null, // <---- make this optional!
54c54
< if (e.tail == null) ???;
---
> if (e.tail == null) break;