Skip to content

Commit a489156

Browse files
Fix typos exceptions (#2042)
1 parent c55dbf7 commit a489156

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

docs/docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,6 @@ This will start a full-blown terminal interface loaded with signing keys corresp
9595

9696
## Use the head
9797

98-
Using the terminal interface of any node, you can now `[i]nit` the Hydra head and `[c]omit` pre-distributed funds to it. Note that these steps are near-instant as the devnet is producing blocks much faster than a public testnet or the mainnet. After committing from all nodes, the head will automatically open, and you can also use the `hydra-tui` or the API to create new transactions and submit them to the Hydra head.
98+
Using the terminal interface of any node, you can now `[i]nit` the Hydra head and `[c]ommit` pre-distributed funds to it. Note that these steps are near-instant as the devnet is producing blocks much faster than a public testnet or the mainnet. After committing from all nodes, the head will automatically open, and you can also use the `hydra-tui` or the API to create new transactions and submit them to the Hydra head.
9999

100100
![](./open-head.png)

docs/docs/tutorial/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ In summary, the Hydra head participants exchanged and agreed on:
407407

408408
## Step 3. Start the Hydra node
409409

410-
Scripts are pre-published for all [released](https://github.com/cardano-scaling/hydra/releases) HYDRA_VERSIONNs of the `hydra-node` and common Cardano networks. Consult the [user manual](../docs/configuration#reference-scripts) for guidance on publishing your own scripts.
410+
Scripts are pre-published for all [released](https://github.com/cardano-scaling/hydra/releases) `HYDRA_VERSION`s of the `hydra-node` and common Cardano networks. Consult the [user manual](../docs/configuration#reference-scripts) for guidance on publishing your own scripts.
411411

412412
Start the `hydra-node` using these parameters:
413413

hydra-tui/src/Hydra/TUI/Drawing.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ drawCommandList s = vBox . fmap txt $ case s ^. connectedStateL of
113113
Connected c -> case c ^. headStateL of
114114
Idle -> ["[I]nit", "[Q]uit"]
115115
Active (ActiveLink{activeHeadState}) -> case activeHeadState of
116-
Initializing{} -> ["[C]omit", "[A]bort", "[Q]uit"]
117-
Open{} -> ["[N]ew Transaction", "[D]ecommit", "[I]increment", "[R]ecover", "[C]lose", "[Q]uit"]
116+
Initializing{} -> ["[C]ommit", "[A]bort", "[Q]uit"]
117+
Open{} -> ["[N]ew Transaction", "[D]ecommit", "[I]ncrement", "[R]ecover", "[C]lose", "[Q]uit"]
118118
Closed{} -> ["[Q]uit"]
119-
FanoutPossible{} -> ["[F]about", "[Q]uit"]
119+
FanoutPossible{} -> ["[F]anout", "[Q]uit"]
120120
Final{} -> ["[I]nit", "[Q]uit"]
121121

122122
drawLogCommandList :: LogVerbosity -> Widget n

typos.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[default.extend-words]
2+
# [F]anout
3+
"anout" = "anout"
4+
# [I]ncrement
5+
"ncrement" = "ncrement"
6+
# [C]ommit
7+
"ommit" = "ommit"

0 commit comments

Comments
 (0)