From f3f86ff10220251333036b7b3002e6379a0789c4 Mon Sep 17 00:00:00 2001 From: DJ_Laser <90146620+DJ-Laser@users.noreply.github.com> Date: Mon, 28 Feb 2022 13:48:09 -0500 Subject: [PATCH] Fix typo (await ed => awaited) I fixed a typo. --- 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 6e613ba80..535e2caa7 100644 --- a/src/ScriptEditor/NetscriptDefinitions.d.ts +++ b/src/ScriptEditor/NetscriptDefinitions.d.ts @@ -4098,7 +4098,7 @@ interface UserInterface { * ns.getHostname(); * // Some related functions are gathered under a sub-property of the ns object * ns.stock.getPrice(); - * // Some functions need to be await ed + * // Some functions need to be awaited * await ns.hack('n00dles'); * } * ```