Rename to_public_user into into_public_user

This commit is contained in:
bitfl0wer 2024-01-23 23:06:14 +01:00
parent 713f9d7846
commit c13ba6b291
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ pub struct UserData {
}
impl User {
pub fn to_public_user(self) -> PublicUser {
pub fn into_public_user(self) -> PublicUser {
PublicUser::from(self)
}
}