From a3162eec0e6392812a3757d8590411402a10e94f Mon Sep 17 00:00:00 2001 From: nzdjb Date: Sun, 1 May 2022 12:57:38 +1200 Subject: [PATCH] docs: Correct typos in getScriptRam docs. --- src/ScriptEditor/NetscriptDefinitions.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ScriptEditor/NetscriptDefinitions.d.ts b/src/ScriptEditor/NetscriptDefinitions.d.ts index e98b03557..5a90f8ea4 100644 --- a/src/ScriptEditor/NetscriptDefinitions.d.ts +++ b/src/ScriptEditor/NetscriptDefinitions.d.ts @@ -6126,7 +6126,7 @@ export interface NS { * Returns 0 if the script does not exist. * * @param script - Filename of script. This is case-sensitive. - * @param host - Host of target server the script is located on. This is optional, If it is not specified then the function will se the current server as the target server. + * @param host - Host of target server the script is located on. This is optional, if it is not specified then the function will use the current server as the target server. * @returns Amount of RAM (in GB) required to run the specified script on the target server, and 0 if the script does not exist. */ getScriptRam(script: string, host?: string): number;