Skip to content

Commit c54c9ae

Browse files
karlbfredo
authored andcommitted
Fix typos and grammer in ADRs
1 parent 07d23d8 commit c54c9ae

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

docs/adr/0008-connection-manager-prevents-fast-sync.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ are code paths in the Raiden code base that are only required by the CM
5959
that caused bugs in the past. It is not clear if the CM in its current
6060
form helps us to achieve our goals and its behavior of doing
6161
transactions at times after joining a TN can make Raiden look bad at
62-
times of high gas costs. In other words, user is not made explicitly
62+
times of high gas costs. In other words, the user is not made explicitly
6363
aware that these channels incur gas costs and this problem is even more
6464
pronounced during times of high gas costs.
6565

docs/adr/0010-refunds.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ initiator. The initiator does not do anything on receiving the refund
2626
and the payment times out. This is the worst possible apporoach because:
2727

2828
- Refunds don’t provide any benefit
29-
- Doing refunds locks up additional funds until the payment times out
29+
- Refunds lock up additional funds until the payment times out
3030
- Refunds significantly increase complexity of the mediation code
3131

3232
The light client has an incomplete and untested refund implementation,

docs/adr/0011-routing-with-token-swaps.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Routing With Built-In Token Swaps
44
Use Case
55
--------
66

7-
Buyer’s and sellers usually each have a preferred currency/token. When
7+
Buyers and sellers usually each have a preferred currency/token. When
88
both parties prefer different tokens, one party has to accept dealing
99
with a non-preferred token. In addition to being inconvenient, this can
1010
also require open a new channel, this making the payment slow and
@@ -18,7 +18,7 @@ Concept
1818
-------
1919

2020
Node A wants to pay node B an amount of 10 T2 tokens, but A only has T1
21-
tokens. A requests a route from the PFS:
21+
tokens. Node A requests a route from the PFS:
2222

2323
::
2424

@@ -52,5 +52,5 @@ Problems
5252
the same time.
5353
- Behavior not clear for non-strict routing
5454
- The route can fail due to changes in conversion rate. This can be
55-
mitigated by adding some safety margin, but the increases the price
55+
mitigated by adding some safety margin, but this increases the price
5656
for the sender.

docs/adr/0012-token-swaps.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Earn Fees by Providing Token Swaps
3333

3434
In addition to providing normal mediation, mediators can also choose to
3535
act as an exchange between different token networks. The mediator will
36-
have to excplitly accept the legal risks and choose reasonable exchange
36+
have to explicitly accept the legal risks and choose reasonable exchange
3737
rates.
3838

3939
Migrate Between Contract Versions
@@ -49,7 +49,7 @@ This can be mitigated by having some mediators open channels in the new
4949
contracts while keeping their old channels open. Then these mediators
5050
can mediate payments between the old and new networks.
5151

52-
This will require support for multiple token network registries in the
52+
This will require support for multiple token network registries in
5353
the client. As a consequence, multiple token networks for the same token
5454
also have to be supported.
5555

@@ -62,7 +62,7 @@ BTC, tokens on Ethereum, tokens on sidechains or other blockchains.
6262

6363
Compared to the other use cases, this brings additional problems, since
6464
the PFS will not be able to find routes outside of Ethereum and we will
65-
have to coordinate with non-Raiden clients. As a consquence, this should
65+
have to coordinate with non-Raiden clients. As a consequence, this should
6666
be left out of the initial implementation. But we should keep it in
6767
mind, so that we don’t accidentally make it harder to add support for
6868
this in a later step.
@@ -109,7 +109,7 @@ will arise.
109109
Finding Routes Through Multiple Networks
110110
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
111111

112-
Currently, the PFS handles each token network seperately, which prevents
112+
Currently, the PFS handles each token network separately, which prevents
113113
it from finding routes across different token networks. Implementing
114114
support for cross-TN-routes requires some changes to the data structures
115115
used in the PFS. Doing this naively will result in slow pathfinding,

0 commit comments

Comments
 (0)