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