Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Create 16-records.md - Explicando como utilizar a classe record #43

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
docs: 4 - Intermediário/16-records.md - arrumando espaçamento.
Co-authored-by: Eduardo Cabral <47820549+FerroEduardo@users.noreply.github.com>
  • Loading branch information
kaiquevieirasoares and FerroEduardo authored Aug 23, 2024
commit 742de08ed6bc75c95def5ff3ec3bb5ab74c1890c
2 changes: 1 addition & 1 deletion 4 - Intermediário/16-records.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class User {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
User user = (User) o;
return name.equals(user.name) && password.equals(user.password);
return name.equals(user.name) && password.equals(user.password);
}

@Override
Expand Down