[R6] Fix cpf getter typo

This commit is contained in:
Mirna Gama 2024-01-06 19:08:11 -03:00 committed by Mirna Gama
parent 8603dbd393
commit 081e7bcfa3

View File

@ -118,7 +118,7 @@ public class Patient {
* Returns the cpf
* @return A string representing the patient's cpf.
*/
public String getCrm() {
public String getCpf() {
return cpf;
}