Skip to content

Commit

Permalink
Update Pessoa.java
Browse files Browse the repository at this point in the history
  • Loading branch information
ImMarcio authored Sep 6, 2023
1 parent 4fdcb2d commit 59be0fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/Pessoa.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("Pessoa: nome=").append(nome).append(", reunioes=");
if (reunioes.isEmpty()) {
sb.append(" Nenhuma reuniao participada");
sb.append(" Nenhuma reuniao agendada");
} else {
sb.append("\n");
for (Reuniao r : reunioes) {
Expand Down

0 comments on commit 59be0fd

Please sign in to comment.