This code will create a summary comment properly
/** Cool field that contains something. */publicintawesomeField;
This code will not
/** * Really cool field that contains something. * Keep in mind that this field is cooler than awesomeField. */publicintreallyAwesomeField;
This is the case with everything, not just fields.
This code will create a summary comment properly
This code will not
This is the case with everything, not just fields.