diff --git a/code/game/machinery/computer/message.dm b/code/game/machinery/computer/message.dm
index 72d01fda958..136abe54100 100644
--- a/code/game/machinery/computer/message.dm
+++ b/code/game/machinery/computer/message.dm
@@ -461,7 +461,7 @@
recipient_messenger.play_ringtone()
if( customrecepient.loc && ishuman(customrecepient.loc) )
var/mob/living/carbon/human/H = customrecepient.loc
- H << "\icon[customrecepient] Message from [customsender] ([customjob]), \"[custommessage]\" (Reply)"
+ H << "\icon[customrecepient] Message from [customsender] ([customjob]), \"[custommessage]\" (Reply)"
log_pda("[usr] (PDA: [customsender]) sent \"[custommessage]\" to [customrecepient.owner]")
recipient_messenger.set_new(1)
//Sender is faking as someone who exists
@@ -475,7 +475,7 @@
recipient_messenger.play_ringtone()
if( customrecepient.loc && ishuman(customrecepient.loc) )
var/mob/living/carbon/human/H = customrecepient.loc
- H << "\icon[customrecepient] Message from [PDARec.owner] ([customjob]), \"[custommessage]\" (Reply)"
+ H << "\icon[customrecepient] Message from [PDARec.owner] ([customjob]), \"[custommessage]\" (Reply)"
log_pda("[usr] (PDA: [PDARec.owner]) sent \"[custommessage]\" to [customrecepient.owner]")
recipient_messenger.set_new(1)
//Finally..
diff --git a/code/modules/pda/messenger.dm b/code/modules/pda/messenger.dm
index a6a66d95420..0cd76bb7796 100644
--- a/code/modules/pda/messenger.dm
+++ b/code/modules/pda/messenger.dm
@@ -218,7 +218,7 @@
if(L)
- L << "\icon[P] Message from [pda.owner] ([pda.ownjob]), \"[t]\" (Reply)"
+ L << "\icon[P] Message from [pda.owner] ([pda.ownjob]), \"[t]\" (Reply)"
nanomanager.update_user_uis(L, P) // Update the receiving user's PDA UI so that they can see the new message
nanomanager.update_user_uis(U, P) // Update the sending user's PDA UI so that they can see the new message