Merge pull request #4207 from quacksouls/doc-prettier

DOC: no trailing whitespace
This commit is contained in:
hydroflame 2022-10-09 00:22:25 -04:00 committed by GitHub
commit ed0a28d292
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1105,7 +1105,7 @@ export interface TIX {
* ```ts * ```ts
* // NS1 * // NS1
* stock.getPrice("FSIG"); * stock.getPrice("FSIG");
* *
* // Choose the first stock symbol from the array of stock symbols. Get the price * // Choose the first stock symbol from the array of stock symbols. Get the price
* // of the corresponding stock. * // of the corresponding stock.
* var sym = stock.getSymbols()[0]; * var sym = stock.getSymbols()[0];
@ -1116,7 +1116,7 @@ export interface TIX {
* ```ts * ```ts
* // NS2 * // NS2
* ns.stock.getPrice("FSIG"); * ns.stock.getPrice("FSIG");
* *
* // Choose the first stock symbol from the array of stock symbols. Get the price * // Choose the first stock symbol from the array of stock symbols. Get the price
* // of the corresponding stock. * // of the corresponding stock.
* const sym = ns.stock.getSymbols()[0]; * const sym = ns.stock.getSymbols()[0];
@ -4873,7 +4873,7 @@ export interface NS {
* print("WARNing! Here be dragons."); * print("WARNing! Here be dragons.");
* print("INFO for your I's only (FYI)."); * print("INFO for your I's only (FYI).");
* print("INFOrmation overload!"); * print("INFOrmation overload!");
* // Custom color coding. * // Custom color coding.
* var cyan = "\u001b[36m"; * var cyan = "\u001b[36m";
* var green = "\u001b[32m"; * var green = "\u001b[32m";
* var red = "\u001b[31m"; * var red = "\u001b[31m";
@ -4973,9 +4973,9 @@ export interface NS {
* RAM cost: 0 GB * RAM cost: 0 GB
* *
* - See {@link NS.print | print} for how to add color to your printed strings. * - See {@link NS.print | print} for how to add color to your printed strings.
* *
* - See {@link NS.printf | printf} for examples on formatted strings. * - See {@link NS.printf | printf} for examples on formatted strings.
* *
* - For more detail, see: https://github.com/alexei/sprintf.js * - For more detail, see: https://github.com/alexei/sprintf.js
* *
* @param format - Format of the message. * @param format - Format of the message.