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.
This commit is contained in:
Duck McSouls 2022-10-01 09:59:44 +10:00
parent 5e4a393495
commit 5e14d07d9a

@ -1089,11 +1089,12 @@ export interface TIX {
getSymbols(): string[]; getSymbols(): string[];
/** /**
* Returns the price of a stock * Returns the price of a stock.
* *
* @remarks * @remarks
* RAM cost: 2 GB * RAM cost: 2 GB
* The stocks price is the average of its bid and ask price. *
* The stocks price is the average of its bid and ask prices.
* *
* @example * @example
* ```ts * ```ts