Skip to content

Commit ea4d105

Browse files
authored
Merge pull request #4763 from chloefeal/fix
Fix typos
2 parents 5ef6cac + 2814ed2 commit ea4d105

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

script/src/scheduler.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ where
560560
_ => (),
561561
}
562562
}
563-
// Transfering data from write fds to read fds
563+
// Transferring data from write fds to read fds
564564
for (read_vm_id, read_state, write_vm_id, write_state) in pairs {
565565
let ReadState {
566566
length: read_length,

script/testdata/spawn_cases.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ int parent_invalid_fd(uint64_t* pid) {
121121
err = ckb_write(fds[CKB_STDOUT], data, &data_length);
122122
CHECK2(err == CKB_OTHER_END_CLOSED, -2);
123123

124-
// read from fd but the ohter end is closed
124+
// read from fd but the other end is closed
125125
err = ckb_pipe(fds);
126126
CHECK(err);
127127
err = ckb_close(fds[CKB_STDOUT]);

util/app-config/src/configs/indexer.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pub struct IndexerConfig {
3535
/// The init tip block hash
3636
#[serde(default)]
3737
pub init_tip_hash: Option<H256>,
38-
/// limit of indexer reqeust
38+
/// limit of indexer request
3939
#[serde(default)]
4040
pub request_limit: Option<usize>,
4141
/// Rich indexer config options

util/fee-estimator/src/estimator/weight_units_flow.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
//! - New transactions entering the mempool.
3737
//!
3838
//! While it's impossible to predict sudden changes to the speed at which new
39-
//! weight is added to the mempool, for simplicty's sake we're going to assume
39+
//! weight is added to the mempool, for simplicity's sake we're going to assume
4040
//! the flow we measured remains constant: `added_weight = flow * blocks`.
4141
//!
4242
//! - Transactions leaving the mempool due to mined blocks. Each block removes

0 commit comments

Comments
 (0)