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.
This commit is contained in:
Zandario
2023-02-13 19:36:40 -07:00
committed by GitHub
parent 497bcdc8d1
commit bfbf3ccd65
3 changed files with 5 additions and 4 deletions
@@ -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
+1 -1
View File
@@ -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
+1 -1
View File
@@ -618,7 +618,7 @@ const TechNode = (props, context) => {
</ProgressBar>
);
// 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)