From 4d62e5177d5df980c934b7a9a003ee9ca79ad8fc Mon Sep 17 00:00:00 2001 From: Max Wardeh Date: Fri, 15 Nov 2024 13:56:08 +0000 Subject: [PATCH] Fix @docmodule typo in user_notifier.ex --- lib/maker_passport/accounts/user_notifier.ex | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/lib/maker_passport/accounts/user_notifier.ex b/lib/maker_passport/accounts/user_notifier.ex index fef35b3..689573e 100644 --- a/lib/maker_passport/accounts/user_notifier.ex +++ b/lib/maker_passport/accounts/user_notifier.ex @@ -1,5 +1,5 @@ defmodule MakerPassport.Accounts.UserNotifier do - @moduledoc """ + @moduledoc false import Swoosh.Email alias MakerPassport.Mailer @@ -22,20 +22,22 @@ defmodule MakerPassport.Accounts.UserNotifier do Deliver instructions to confirm account. """ def deliver_confirmation_instructions(user, url) do - deliver(user.email, "Confirmation instructions", """ + deliver(user.email, + "Maker Passport account confirmation instructions", + """ - ============================== + ============================== - Hi #{user.email}, + Hi #{user.email}, - You can confirm your account by visiting the URL below: + You can confirm your account by visiting the URL below: - #{url} + #{url} - If you didn't create an account with us, please ignore this. + If you didn't create an account with us, please ignore this. - ============================== - """) + ============================== + """) end @doc """