From 4096ce4a9db212274ef0d644f57468a31ec96132 Mon Sep 17 00:00:00 2001 From: Thad Guidry Date: Sat, 1 Jan 2022 14:08:45 -0600 Subject: [PATCH] fix typo for @param host in getScriptRam() --- dist/bitburner.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/bitburner.d.ts b/dist/bitburner.d.ts index b1f213753..44ab57d24 100644 --- a/dist/bitburner.d.ts +++ b/dist/bitburner.d.ts @@ -3498,7 +3498,7 @@ export declare interface NS extends Singularity { * 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 required to run the specified script on the target server, and 0 if the script does not exist. */ getScriptRam(script: string, host?: string): number;