File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -295,7 +295,7 @@ rebuild _just_ this derivation in a single-threaded fashion:
295295$ guix build --cores=1 /gnu/store/...-foo-3.6.12.drv
296296```
297297
298- If the single-threaded rebuild stil did not succeed, you may need to dig deeper.
298+ If the single-threaded rebuild did not succeed, you may need to dig deeper.
299299You may view ` foo ` 's build logs in ` less ` like so (please replace paths with the
300300path you see in the build failure output):
301301
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ source "$(dirname "${BASH_SOURCE[0]}")/libexec/prelude.bash"
1515# ##################
1616
1717# ###############
18- # Required non-builtin commands should be invokable
18+ # Required non-builtin commands should be invocable
1919# ###############
2020
2121check_tools cat mkdir make git guix
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ source contrib/shell/realpath.bash
99source contrib/shell/git-utils.bash
1010
1111# ###############
12- # Required non-builtin commands should be invokable
12+ # Required non-builtin commands should be invocable
1313# ###############
1414
1515check_tools () {
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ void initialize_tx_pool()
3434
3535 for (int i = 0 ; i < 2 * COINBASE_MATURITY; ++i) {
3636 CTxIn in = MineBlock (g_setup->m_node , P2WSH_OP_TRUE);
37- // Remember the txids to avoid expensive disk acess later on
37+ // Remember the txids to avoid expensive disk access later on
3838 auto & outpoints = i < COINBASE_MATURITY ?
3939 g_outpoints_coinbase_init_mature :
4040 g_outpoints_coinbase_init_immature;
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ class TxOrphanage {
2626 /* * Check if we already have an orphan transaction (by txid or wtxid) */
2727 bool HaveTx (const GenTxid& gtxid) const LOCKS_EXCLUDED(::g_cs_orphans);
2828
29- /* * Get an orphan transaction and its orginating peer
29+ /* * Get an orphan transaction and its originating peer
3030 * (Transaction ref will be nullptr if not found)
3131 */
3232 std::pair<CTransactionRef, NodeId> GetTx (const uint256& txid) const EXCLUSIVE_LOCKS_REQUIRED(g_cs_orphans);
Original file line number Diff line number Diff line change @@ -486,7 +486,7 @@ class TxRequestTracker::Impl {
486486 }
487487
488488 // ! Make the data structure consistent with a given point in time:
489- // ! - REQUESTED annoucements with expiry <= now are turned into COMPLETED.
489+ // ! - REQUESTED announcements with expiry <= now are turned into COMPLETED.
490490 // ! - CANDIDATE_DELAYED announcements with reqtime <= now are turned into CANDIDATE_{READY,BEST}.
491491 // ! - CANDIDATE_{READY,BEST} announcements with reqtime > now are turned into CANDIDATE_DELAYED.
492492 void SetTimePoint (std::chrono::microseconds now, std::vector<std::pair<NodeId, GenTxid>>* expired)
You can’t perform that action at this time.
0 commit comments