From 351d769122279a065bf3e13763cab66ace24ff5a Mon Sep 17 00:00:00 2001 From: Duck McSouls Date: Thu, 6 Oct 2022 23:29:06 +1100 Subject: [PATCH] DOC: no trailing whitespace Remove some trailing whitespaces in `src/ScriptEditor/NetscriptDefinitions.d.ts` because `npm run format` complains about them. The trailing whitespaces were introduced in one of my earlier patches. Sorry about this :-( --- src/ScriptEditor/NetscriptDefinitions.d.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ScriptEditor/NetscriptDefinitions.d.ts b/src/ScriptEditor/NetscriptDefinitions.d.ts index c9230e181..99e46ec1e 100644 --- a/src/ScriptEditor/NetscriptDefinitions.d.ts +++ b/src/ScriptEditor/NetscriptDefinitions.d.ts @@ -1105,7 +1105,7 @@ export interface TIX { * ```ts * // NS1 * stock.getPrice("FSIG"); - * + * * // Choose the first stock symbol from the array of stock symbols. Get the price * // of the corresponding stock. * var sym = stock.getSymbols()[0]; @@ -1116,7 +1116,7 @@ export interface TIX { * ```ts * // NS2 * ns.stock.getPrice("FSIG"); - * + * * // Choose the first stock symbol from the array of stock symbols. Get the price * // of the corresponding stock. * const sym = ns.stock.getSymbols()[0]; @@ -4873,7 +4873,7 @@ export interface NS { * print("WARNing! Here be dragons."); * print("INFO for your I's only (FYI)."); * print("INFOrmation overload!"); - * // Custom color coding. + * // Custom color coding. * var cyan = "\u001b[36m"; * var green = "\u001b[32m"; * var red = "\u001b[31m"; @@ -4973,9 +4973,9 @@ export interface NS { * RAM cost: 0 GB * * - See {@link NS.print | print} for how to add color to your printed strings. - * + * * - See {@link NS.printf | printf} for examples on formatted strings. - * + * * - For more detail, see: https://github.com/alexei/sprintf.js * * @param format - Format of the message.