DOCUMENTATION: Fix wrong identification of inline mathematical expressions (#1195)

Applies backslashes to all relevant "$".
This commit is contained in:
catloversg
2024-03-29 15:42:18 +07:00
committed by GitHub
parent a923041382
commit c467daaf86
6 changed files with 51 additions and 51 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ When running a script, you can use [flags](https://github.com/bitburner-official
A script can be run with multiple threads, which we call "multithreading."
Multithreading affects every call to the `ns.hack()`, `ns.grow()`, and `ns.weaken()` methods, multiplying their effects by the number of threads used.
For example, if a script run with 1 thread is able to hack $10,000, then running the same script with 5 threads would hack $50,000.
For example, if a script run with 1 thread is able to hack \$10,000, then running the same script with 5 threads would hack \$50,000.
[Note -- Scripts will not actually become multithreaded in the real-world sense - Javascript is a "single-threaded" coding language.]
+6 -6
View File
@@ -77,15 +77,15 @@ For example if you choose to short a stock with 5000 shares using a Market Order
A Limit Order is an order that only executes under certain conditions.
A Limit Order is used to buy or sell a stock at a specified price or better.
For example, lets say you purchased a Long position of 100 shares of some stock at a price of $10 per share.
You can place a Limit Order to sell those 100 shares at $50 or better.
The Limit Order will execute when the price of the stock reaches a value of $50 or higher.
For example, lets say you purchased a Long position of 100 shares of some stock at a price of \$10 per share.
You can place a Limit Order to sell those 100 shares at \$50 or better.
The Limit Order will execute when the price of the stock reaches a value of \$50 or higher.
A Stop Order is the opposite of a Limit Order.
It is used to buy or sell a stock at a specified price (before the price gets 'worse').
For example, lets say you purchased a Short position of 100 shares of some stock at a price of $100 per share.
The current price of the stock is $80 (a profit of $20 per share).
You can place a Stop Order to sell the Short position if the stock's price reaches $90 or higher.
For example, lets say you purchased a Short position of 100 shares of some stock at a price of \$100 per share.
The current price of the stock is \$80 (a profit of \$20 per share).
You can place a Stop Order to sell the Short position if the stock's price reaches \$90 or higher.
This can be used to lock in your profits and limit any losses.
Here is a summary of how each order works and when they execute: