Mixin
Mixin copied to clipboard
flard_01.png Code in image, minor bug
Looking at the image SpongePowered/Mixin/master/docs/images/flard_01.png
The code is:
Flard f = new Flard();
flard.setPos ...;
System.err ...(..., flard);
The declaration is a variable f
, but the code then refers to a different variable called flard
.
Please change the declaration to flard
to make the code consistent.
Thanks!