fix typo for @param host in getScriptRam()

This commit is contained in:
Thad Guidry
2022-01-01 14:08:45 -06:00
committed by GitHub
parent b578e09986
commit 4096ce4a9d

2
dist/bitburner.d.ts vendored
View File

@@ -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;