summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2020-06-08 20:01:37 +0000
committerlain <lain@soykaf.club>2020-06-08 20:01:37 +0000
commitfc04a138d46c43860a2838d60fc8668112fdc1ec (patch)
tree65009290a96f8ef0f159156be5d308f642d6ee5b
parent3b5282bef29656f081750a0d9b06a42b912520de (diff)
Apply suggestion to lib/pleroma/notification.ex
-rw-r--r--lib/pleroma/notification.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/notification.ex b/lib/pleroma/notification.ex
index 3ac8737e2..3386a1933 100644
--- a/lib/pleroma/notification.ex
+++ b/lib/pleroma/notification.ex
@@ -31,7 +31,7 @@ defmodule Pleroma.Notification do
schema "notifications" do
field(:seen, :boolean, default: false)
# This is an enum type in the database. If you add a new notification type,
- # remembert to add a migration to add it to the `notifications_type` enum
+ # remember to add a migration to add it to the `notifications_type` enum
# as well.
field(:type, :string)
belongs_to(:user, User, type: FlakeId.Ecto.CompatType)