Skip to content

Commit

Permalink
fix: fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoluoboding committed May 25, 2022
1 parent a510a12 commit 21e42f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/server/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ func (s *Server) registerUserRoutes(g *echo.Group) {

err = s.Store.DeleteUser(userDelete)
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, fmt.Sprintf("Failed to delete memo ID: %v", userID)).SetInternal(err)
return echo.NewHTTPError(http.StatusInternalServerError, fmt.Sprintf("Failed to delete user ID: %v", userID)).SetInternal(err)
}

c.JSON(http.StatusOK, true)
Expand Down

0 comments on commit 21e42f5

Please sign in to comment.