From b7604709e5156d78b9fe4f7d435f63875859f16c Mon Sep 17 00:00:00 2001 From: Kyle Hargraves Date: Fri, 21 Jan 2022 07:37:16 -0600 Subject: [PATCH] NetscriptDefinitions: fix jsdoc for Corp research functions --- src/ScriptEditor/NetscriptDefinitions.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ScriptEditor/NetscriptDefinitions.d.ts b/src/ScriptEditor/NetscriptDefinitions.d.ts index 6021a88ef..fe6a875ac 100644 --- a/src/ScriptEditor/NetscriptDefinitions.d.ts +++ b/src/ScriptEditor/NetscriptDefinitions.d.ts @@ -6179,14 +6179,14 @@ export interface OfficeAPI { /** * Get the cost to unlock research * @param divisionName - Name of the division - * @param cityName - Name of the city + * @param researchName - Name of the research * @returns cost */ getResearchCost(divisionName: string, researchName: string): number; /** * Gets if you have unlocked a research * @param divisionName - Name of the division - * @param cityName - Name of the city + * @param researchName - Name of the research * @returns true is unlocked, false if not */ hasResearched(divisionName: string, researchName: string): boolean;