From 5e14d07d9a648071dce101173bdce681c22de8af Mon Sep 17 00:00:00 2001 From: Duck McSouls Date: Sat, 1 Oct 2022 09:59:44 +1000 Subject: [PATCH] DOC: `stock.getPrice()`: typo fixes Some typographical fixes for the documentation of `stock.getPrice()`. The line for RAM cost should be separated by a blank line from the sentence about the definition of a stock's price. Otherwise `npm run doc` would cram those information together onto one line. --- src/ScriptEditor/NetscriptDefinitions.d.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ScriptEditor/NetscriptDefinitions.d.ts b/src/ScriptEditor/NetscriptDefinitions.d.ts index 903f65400..ff935814c 100644 --- a/src/ScriptEditor/NetscriptDefinitions.d.ts +++ b/src/ScriptEditor/NetscriptDefinitions.d.ts @@ -1089,11 +1089,12 @@ export interface TIX { getSymbols(): string[]; /** - * Returns the price of a stock + * Returns the price of a stock. * * @remarks * RAM cost: 2 GB - * The stock’s price is the average of its bid and ask price. + * + * The stock’s price is the average of its bid and ask prices. * * @example * ```ts