fix typo.

This commit is contained in:
Miroslav Šedivý 2021-03-14 16:23:14 +01:00
parent fad3ab0062
commit 19e732f3ea
2 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ func (manager *MemberManagerCtx) UpdateProfile(id string, profile types.MemberPr
return fmt.Errorf("Not implemented.")
}
func (manager *MemberManagerCtx) UpdatePassword(id string, passwrod string) error {
func (manager *MemberManagerCtx) UpdatePassword(id string, password string) error {
return fmt.Errorf("Not implemented.")
}

View File

@ -20,6 +20,6 @@ type MemberManager interface {
Select(id string) (MemberProfile, error)
SelectAll(limit int, offset int) (map[string]MemberProfile, error)
UpdateProfile(id string, profile MemberProfile) error
UpdatePassword(id string, passwrod string) error
UpdatePassword(id string, password string) error
Delete(id string) error
}