From bfbf3ccd6578cdec316364fafa40af06a42322a5 Mon Sep 17 00:00:00 2001 From: Zandario Date: Mon, 13 Feb 2023 20:36:40 -0600 Subject: [PATCH] Grammar: Te spelling mistake I've been staring at for hours (#73385) ## About The Pull Request I noticed `/datum/tgui`'s DMDOC Comment on `var/title` misspelled `the` as `te` while doing some unholy UI experiments, so I was going to PR a correction so I can stop thinking about it. Though to be safe I checked if it happened more than once, apparently it has happened thrice. --- code/modules/atmospherics/environmental/LINDA_turf_tile.dm | 5 +++-- code/modules/tgui/tgui.dm | 2 +- tgui/packages/tgui/interfaces/Techweb.js | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/code/modules/atmospherics/environmental/LINDA_turf_tile.dm b/code/modules/atmospherics/environmental/LINDA_turf_tile.dm index d1d96c74c2b..0199ff930dc 100644 --- a/code/modules/atmospherics/environmental/LINDA_turf_tile.dm +++ b/code/modules/atmospherics/environmental/LINDA_turf_tile.dm @@ -655,8 +655,9 @@ Then we space some of our heat, and think about if we should stop conducting. return FALSE return ..() -/turf/proc/radiate_to_spess() //Radiate excess tile heat to space - if(temperature <= T0C) //Considering 0 degC as te break even point for radiation in and out +/// Radiate excess tile heat to space. +/turf/proc/radiate_to_spess() + if(temperature <= T0C) // Considering 0 degC as the break even point for radiation in and out. return // Because we keep losing energy, makes more sense for us to be the T2 here. var/delta_temperature = temperature_archived - TCMB //hardcoded space temperature diff --git a/code/modules/tgui/tgui.dm b/code/modules/tgui/tgui.dm index d0e09344ca6..be03e118917 100644 --- a/code/modules/tgui/tgui.dm +++ b/code/modules/tgui/tgui.dm @@ -11,7 +11,7 @@ var/mob/user /// The object which owns the UI. var/datum/src_object - /// The title of te UI. + /// The title of the UI. var/title /// The window_id for browse() and onclose(). var/datum/tgui_window/window diff --git a/tgui/packages/tgui/interfaces/Techweb.js b/tgui/packages/tgui/interfaces/Techweb.js index f933b24c0d5..34ce108ac7f 100644 --- a/tgui/packages/tgui/interfaces/Techweb.js +++ b/tgui/packages/tgui/interfaces/Techweb.js @@ -618,7 +618,7 @@ const TechNode = (props, context) => { ); - // Notice this logic will have te be changed if we make the discounts + // Notice that this logic will have to be changed if we make the discounts // pool-specific const nodeDiscount = Object.keys(discount_experiments) .filter((x) => experiments[x]?.completed)