From 5a032d20073e43720c5864d1c39486666a20dabd Mon Sep 17 00:00:00 2001 From: mStar Date: Sat, 5 Apr 2025 22:00:07 +0200 Subject: [PATCH] Fix typo --- storage-new/models/UserToPronoun.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/storage-new/models/UserToPronoun.go b/storage-new/models/UserToPronoun.go index e99d7e6..70bf38d 100644 --- a/storage-new/models/UserToPronoun.go +++ b/storage-new/models/UserToPronoun.go @@ -4,8 +4,8 @@ package models // Each user may have zero, one or more pronouns // but each user to pronoun relation may appear at most once type UserToPronoun struct { - ID uint64 `gorm:"primarykey"` - User User - UserId string - Pronoung string + ID uint64 `gorm:"primarykey"` + User User + UserId string + Pronoun string }