Closed
Description
The Example 2 in Property Population has the following sentence:
- The
remarks
properties are mutable and populated by setting thecomment
field directly or by invoking the setter method for
as explanation of the following code:
void setRemarks(String remarks) { <5>
this.remarks = remarks;
}
The sentence appears to be incomplete. It also seems to incorrectly specify comment
instead of remarks
as a way to populate property. I'm not sure how that sentence should go but currently it seems weird.
Hope this is the right place to post it sorry if not.