@ -142,7 +142,7 @@ open class Player : RealmObject(), NameManageable, Deletable, StaticRowRepresent
/**
* Add an entry
*/
fun addComent(): Comment {
fun addComment(): Comment {
val entry = Comment()
this.comments.add(entry)
updateRowRepresentation()
@ -158,7 +158,7 @@ class PlayerDataFragment : EditableDataFragment(), StaticRowRepresentableDataSou
}
addComment.setOnClickListener {
val comment = player.addComent()
val comment = player.addComment()
rowRepresentableAdapter.notifyDataSetChanged()
onRowSelected(-1, comment)