diff --git a/code/game/machinery/tcomms/_base.dm b/code/game/machinery/tcomms/_base.dm
index 08e46da5006..a857afcef89 100644
--- a/code/game/machinery/tcomms/_base.dm
+++ b/code/game/machinery/tcomms/_base.dm
@@ -173,7 +173,7 @@ GLOBAL_LIST_EMPTY(tcomms_machines)
var/list/zlevels = list()
/**
- * Descruter for the TCM datum.
+ * Destructor for the TCM datum.
*
* This needs to happen like this so that things dont keep references held in place
*/
@@ -450,7 +450,7 @@ GLOBAL_LIST_EMPTY(tcomms_machines)
/obj/item/paper/tcommskey/LateInitialize(mapload)
for(var/obj/machinery/tcomms/core/C in GLOB.tcomms_machines)
if(C.network_id == "STATION-CORE")
- info = "
Telecommunications Key
The station core linkage password is '[C.link_password]'.
Should this paper be misplaced or destroyed, fear not, as the password is visible under the core linkage section. Should you wish to modify this password, it can be modified from the core."
+ info = "Telecommunications Key
\n\t
The station core linkage password is '[C.link_password]'.
Should this paper be misplaced or destroyed, fear not, as the password is visible under the core linkage section. Should you wish to modify this password, it can be modified from the core."
info_links = info
update_icon()
// Save time, even though there should only be one STATION-CORE in the world
diff --git a/code/game/machinery/tcomms/core.dm b/code/game/machinery/tcomms/core.dm
index 9ecac58c7c6..9e638913f9d 100644
--- a/code/game/machinery/tcomms/core.dm
+++ b/code/game/machinery/tcomms/core.dm
@@ -35,7 +35,7 @@
reachable_zlevels |= loc.z
/**
- * Descruter for the core.
+ * Destructor for the core.
*
* Ensures that the machine is taken out of the global list when destroyed, and also unlinks all connected relays
*/