Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 0597191

Browse files
authored
Fix typos (#5973)
* fix typos README.md * fix typos README.md * fix typos usage.md * fix typos encryption.md * fix typos overview.md * fix typos quickstart.md * fix typos cli.md * Update README.md * Update usage.md * Update encryption.md * Update encryption.md * Update overview.md * Update quickstart.md * Update cli.md
1 parent 042829b commit 0597191

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

binary-option/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ python -m client.test
4747

4848
`n_s` the number of long contracts owned by the seller
4949

50-
We know from our college combinatorics/discrete math class that there are 3! = 6 ways to order 3 items. Let's list out all configurations of how these numbers can bet ordered from largest to smallest (assuming all distinct):
50+
We know from our college combinatorics/discrete math class that there are 3! = 6 ways to order 3 items. Let's list out all configurations of how these numbers can be ordered from largest to smallest (assuming all distinct):
5151

5252
```
5353
1) n_b > n_s > n
@@ -61,7 +61,7 @@ This is a lot of cases to consider, but we can group them into combined categori
6161
```
6262
n_b >= n && n_s >= n
6363
```
64-
This clause essentially groups 1) and 2) together. In this case, both buyer and seller are simply reducing their existing inventory. Therefore, we can just remove `n` long tokens and `n` short tokens from circulation. Both parties are also entitled to the locked up funds for their positions that were closed, so the buyer receives `n * sell_price` and the seller received `n * buy_price`. This might be confusing at first, but a good way to think about this is that there are no "sellers". Everyone with inventory is a "buyer". If an event as a probability `p` of occurring, the buyer is paying `p` and the seller is paying `1-p`. When a market participant receives funds, they are "selling out" (either locking in profits or losses) of their existing position.
64+
This clause essentially groups 1) and 2) together. In this case, both buyer and seller are simply reducing their existing inventory. Therefore, we can just remove `n` long tokens and `n` short tokens from circulation. Both parties are also entitled to the locked up funds for their positions that were closed, so the buyer receives `n * sell_price` and the seller received `n * buy_price`. This might be confusing at first, but a good way to think about this is that there are no "sellers". Everyone with inventory is a "buyer". If an event has a probability `p` of occurring, the buyer is paying `p` and the seller is paying `1-p`. When a market participant receives funds, they are "selling out" (either locking in profits or losses) of their existing position.
6565

6666
```
6767
n_b < n && n_s < n

docs/src/confidential-token/deep-dive/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ decrypting transaction amounts allow for a more flexible interface.
299299
In a potential application, the decryption key for specific accounts can be
300300
shared among multiple users (e.g. regulators) that should have access to an
301301
account balance. Although these users can decrypt account balances, only the
302-
owner of the account that has access to the owner signing key can sign a
302+
owner of the account who has access to the owner signing key can sign a
303303
transaction that initiates a transfer of tokens. The owner of an account can
304304
update the account with a new encryption key using the `ConfigureAccount`.
305305

@@ -369,7 +369,7 @@ Account {
369369
}
370370
```
371371

372-
Any outgoing funds from an account is subtracted from its available balance. Any
372+
Any outgoing funds from an account are subtracted from its available balance. Any
373373
incoming funds to an account is added to its pending balance.
374374

375375
As an example, consider a transfer instruction that moves 10 tokens from a

0 commit comments

Comments
 (0)