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)