style(user): changing the getter nickname for getName()

This commit is contained in:
Raphael 2025-05-24 17:59:18 +02:00
parent b2c5e0f5d7
commit e742988ca7
6 changed files with 14 additions and 9 deletions

View file

@ -26,7 +26,7 @@ int User::getFd() const {
*
* @return the actual nickname of the user
*/
std::string User::getNickname() const {
std::string User::getName() const {
return this->_nickname;
}