Thanks, patch applied!
A couple of tips for the future:
- Please ensure screenshots are of a comparable size to the ones around them or that they replace. We sometimes see extra-large screenshots where they've been taken on hi-res screens, often in an VM.
- Please be more generous with spaces, e.g.
func_name(a,b) should be func_name(a, b)
or
if (dave.isHungry()){
dave.feed('Sammich')
}
should be
if (dave.isHungry()) {
dave.feed('Sammich')
}
It makes it all a little more readable :-)
Thanks again.