diff --git a/markdown/bitburner.ns.getscriptram.md b/markdown/bitburner.ns.getscriptram.md
index 18251481b..fce3d732a 100644
--- a/markdown/bitburner.ns.getscriptram.md
+++ b/markdown/bitburner.ns.getscriptram.md
@@ -58,7 +58,7 @@ string
-_(Optional)_ Hostname/IP of target server the script is located on. Optional. Defaults to the server the calling script is running on.
+_(Optional)_ Hostname/IP of the server the target script is located on. Optional. Defaults to the server the calling script is running on.
|
@@ -68,7 +68,7 @@ _(Optional)_ Hostname/IP of target server the script is located on. Optional. De
number
-Amount of RAM (in GB) required to run the specified script on the target server, and 0 if the script does not exist.
+Amount of RAM (in GB) required to run the specified script, and 0 if the script does not exist.
## Remarks
diff --git a/src/ScriptEditor/NetscriptDefinitions.d.ts b/src/ScriptEditor/NetscriptDefinitions.d.ts
index dd2d0a4ff..a13c6f023 100644
--- a/src/ScriptEditor/NetscriptDefinitions.d.ts
+++ b/src/ScriptEditor/NetscriptDefinitions.d.ts
@@ -7968,8 +7968,8 @@ export interface NS {
* Returns 0 if the script does not exist.
*
* @param script - Filename of script. This is case-sensitive.
- * @param host - Hostname/IP of target server the script is located on. Optional. Defaults to the server the calling script is running on.
- * @returns Amount of RAM (in GB) required to run the specified script on the target server, and 0 if the script does not exist.
+ * @param host - Hostname/IP of the server the target script is located on. Optional. Defaults to the server the calling script is running on.
+ * @returns Amount of RAM (in GB) required to run the specified script, and 0 if the script does not exist.
*/
getScriptRam(script: string, host?: string): number;